//used by indecx.asp to open various windows.

function invadersWindow()
{
	if (screen.width < 1000)
	  alert("Your screen resolution is too low for this game - must be at least 1024 x 768.")
	else
	window.open('../invaders.asp','SheepInvaders','width=1000,height=700,scrollbars=no,left=10,top=10');
}

function wisewordsWindow()
{
	window.open('wisewords.asp','WiseWords','width=1000,height=700,scrollbars,left=10,top=10,resize=true');
	
}

function pointerWindow()
{
	window.open('pointer.asp','Pointer','width='+screen.width+',height='+screen.height+',scrollbars=no,left=0,top=0');
	
}


function racesWindow()
{
	window.open('http://www.markbirch.com/race','Race','width='+screen.width+',height='+screen.height+',scrollbars=no,left=0,top=0');
	
}

function pairsWindow()
{
	window.open('pairs.asp','Pairs','width=800,height=600,scrollbars=no,left=0,top=0');
	
}
