

function fncTest(){
	alert ("test worked OK - got this far ll");
	}



function fncClose(){
document.location="closewin.html";
}


function fncPopUpTheFlipper()
{         
	var xMax = screen.width;
	var yMax = screen.height;
	
	var varScreenWidth = screen.width;
	var varScreenHeight = screen.height;
	
	varScreenWidth = varScreenWidth - 44 ;
	varScreenHeight = varScreenHeight - 44 ;
	
	if (varScreenWidth  < 1000) { varScreenWidth  = 1000 } ;
	if (varScreenHeight < 730 ) { varScreenHeight = 730  } ;

	var xOffset = (xMax - 1000)/2 ;
	var yOffset = (yMax - 730)/4 ;
	
   	game = window.open('Brussels2010/theBrochure.html','Brochure','width='+varScreenWidth+',height='+varScreenHeight+',left='+xOffset+',top='+yOffset+',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0');
}	


function fncPopUpSpeakers(varTargetpage,varWindowName,varXOffset,varYOffset)
{       

   	game = window.open(varTargetpage,varWindowName,"width=400,height=560,left="+varXOffset+",top="+varYOffset+"100,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0");
}





