/*
 * Custom JS v 1.0
*/

// Write in the CSS file to control load flicker
document.write('<link href="assetsSite/style/has_js.css" media="screen" type="text/css" rel="stylesheet" />');


/** Called from the main ecorangers swf, reloads page with upgrade=true query string. */
function upgradePlayer() {	
	var separator = (window.location.href.indexOf("?") === -1) ? "?" : "&";							
	var newLocation = window.location + separator + "upgrade=true";
	window.location = newLocation;
}

var minWidth = 915;
var minHeight = 620;
window.onresize = function() {
	if(document.all){
	
		var swfElement = document.getElementById("KidZoneSWF");
		var theWidth = document.documentElement.clientWidth;
		var theHeight = document.documentElement.clientHeight;
		
		swfElement.style.width = (minWidth < theWidth) ? theWidth+"px" : minWidth+"px";
		swfElement.style.height = (minHeight < theHeight) ? theHeight+"px" : minHeight+"px";
	}
}
