function launchGameFullWindow() //launches the full screen game
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'quarantine';
	var left = 0;
	var top = 0;
	
	var url = 'http://flash.sonypictures.com/games/quarantine/';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (height < 768)
	{
		features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	}
	
	newwindow = window.open(url, win, features);
	if (window.focus) newwindow.focus();
}

function launchSiteFullWindow() //launches the full screen immersive site
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'quarantine';
	var left = 0;
	var top = 0;
	
	var url = 'main.html';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (height < 700)
	{
		features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	}
	
	newwindow = window.open(url, win, features);
	if (window.focus) newwindow.focus();
}