function launchSiteFullWindow() //launches the full screen immersive site
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'underworld';
	var left = 0;
	var top = 0;
	
	var url = 'http://www.sonypictures.com/movies/underworldriseofthelycans/site/_index.html?hs317=Homevideo+Underworldriseofthelycans+theatricalsite';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (height < 800)
	{
		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 launchGameAFullWindow() //launches the full screen game
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'underworld';
	var left = 0;
	var top = 0;
	
	var url = 'http://flash.sonypictures.com/games/underworldriseofthelycans/night_patrol/_index.html?hs317=Homevideo+Underworldriseofthelycans+gameA';
	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 launchGameBFullWindow() //launches the full screen immersive site
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'underworld';
	var left = 0;
	var top = 0;
	
	var url = 'http://flash.sonypictures.com/games/underworldriseofthelycans/catacombs_maze/_index.html?hs317=Homevideo+Underworldriseofthelycans+gameB';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (height < 800)
	{
		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 launchGameCFullWindow() //launches the full screen immersive site
{
	var width = screen.width;
	var height = screen.height;
	
	var win = 'underworld';
	var left = 0;
	var top = 0;
	
	var url = 'http://flash.sonypictures.com/games/underworldriseofthelycans/guard_the_castle/_index.html?hs317=Homevideo+Underworldriseofthelycans+gameC';
	var features = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top;
	
	if (height < 800)
	{
		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();
}