﻿// Open new windows functions
function newGameWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}

function newFooter(href) {
	newWindow = window.open(href, "newFooter", "width=500, height=600, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
}