﻿// JScript File

function bgOver(thisCell) {
	document.getElementById(thisCell).className = 'gameBkgOver';
}

function bgOut(thisCell) {
	document.getElementById(thisCell).className = 'gameBkg';
}

function popupWin(url,w,h) {
	var features =	'scrollbars=yes, toolbar=no, status=no, menubar=no ' +
					',resizable=no, location=no, directories=no ' +
					',left=' + ((screen.width-w)/2) +
					',top='  + ((screen.height-h)/2) +
					',width=' + w + ',height=' + h;
	myWin =	window.open(url,'WinName',features);
	return false;
}

function popupWin(url,w,h) {
	var features =	'scrollbars=yes, toolbar=no, status=no, menubar=no ' +
					',resizable=no, location=no, directories=no ' +
					',left=' + ((screen.width-w)/2) +
					',top='  + ((screen.height-h)/2) +
					',width=' + w + ',height=' + h;
	myWin =	window.open(url,'WinName',features);
	return false;
}