// JavaScript Document
function openSWF(folder, file, width, height) {
	var ScrnHght = screen.height;
	var ScrnWdth = screen.width;
	WndwXPos = ((ScrnHght*4/3) - width)/2;
	WndwYPos = (ScrnHght - height)/2;
	window.open('http://www.mattfoxgames.com/'+folder+'/' + file,"thenewwindow","scrollbars=0,menubar=0,toolbar=0,location=0,resizable=0,status=0,width="+width+",height="+height+",left="+WndwXPos+",top="+WndwYPos);
}

function openSwf(folder, file, width, height) {
	window.open('http://www.mattfoxgames.com/' + folder + '/play.php?file=' + file + '&width=' + width + '&height=' + height,"thenewwindow","scrollbars=0,menubar=0,toolbar=0,location=0,resizable=0,status=0");
}

function openCustomLightsOut(width, height, readOut1, readOut2, readOut3, readOut4, readOut5, readOut6) {
	window.open('http://www.mattfoxgames.com/games/lightsOut.php?file=lightsOut.swf&width=' + width + '&height=' + height + '&readOut1=' + String(readOut1) + '&readOut2=' + readOut2 + '&readOut3=' + readOut3 + '&readOut4=' + readOut4 + '&readOut5=' + readOut5 + '&readOut6=' + readOut6,"thenewwindow","scrollbars=0,menubar=0,toolbar=0,location=0,resizable=0,status=0");
}

function cloak(WndwXSize, WndwYSize) {
	var ScrnHght = "UnCommon"
	var ScrnWdth = "UnCommon"
	var WndwXPos = "UnCommon"
	var WndwYPos = "UnCommon"
	WndwXSize += 50;
	WndwYSize += 140;
	ScrnHght = screen.height;
	ScrnWdth = screen.width;
	WndwXPos = ((ScrnHght*4/3) - WndwXSize)/2;
	WndwYPos = (ScrnHght - WndwYSize)/2;
	window.resizeTo(WndwXSize,WndwYSize);
	window.moveTo(WndwXPos,WndwYPos);
	window.focus();
}