function launchFullScreen(strURL){
	var appName = navigator.appName.toLowerCase(); 
	var width = 932;
	var height = 733;
	if (appName.indexOf("explorer") == -1){
		width += 4;
		height += 3;
	}
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var resize = "no";
	var scroller = "no";
	if (screen.width < width || screen.height < height){
		scroller = "yes";
		resize = "yes";
		width = screen.width;
		height = screen.height-100;
	}
	var winFull;
	winFull = window.open(strURL,'FullScreen','left='+left+',top='+top+',width='+width+',height='+height+',resizable='+resize+',scrollbars='+scroller);
	winFull.focus();
	if (boolInframe || boolDialup){
		window.document.location.replace(FlashVars.General.splashURL);
	}
	
}
function launchInframe(strURL){
	if (boolFullscreen){
		var winInframe;
		var winTarget = "win"+Math.floor(Math.random()*1000000);
		winInframe = window.open(strURL,winTarget);
		winInframe.focus();
		window.close();
	} else {
		window.document.location.replace(strURL);
	}
}