window.onload=function()
{
	if(document.domain!='us.telecitygroup.com')
	{
		var cookieVal = getSiteSelectCookie();
		if(cookieVal == 'US'){redirectPage();}
			else
		if(cookieVal == 'COM'){}
			else
		{
			var screenScroll = 0;
			if (typeof document.documentElement.scrollHeight != 'undefined'){screenScroll = document.documentElement.scrollHeight;}
				else
			if (typeof document.body.scrollHeight != 'undefined'){screenScroll = document.body.scrollHeight;}
			var screenHeight = 0;				
			if(window.innerHeight){screenHeight = window.innerHeight;}else{screenHeight = document.documentElement.clientHeight;}
			if(screenHeight < 150){screenHeight = document.body.clientHeight;}
			if(screenScroll > screenHeight){screenHeight = screenScroll;}

			var newElement = document.createElement('div');
			newElement.setAttribute('id', 'greyOut');
			document.getElementsByTagName('body')[0].appendChild(newElement);
			document.getElementById('greyOut').style.height = screenHeight+'px';
			document.getElementById('greyOut').style.opacity = (60 / 100);
			document.getElementById('greyOut').style.filter = "alpha(opacity=" + 60 + ")";
			document.getElementById('greyOut').style.MozOpacity = 60 / 100;
			if(typeof document.getElementById('greyOut').addEventListener != 'undefined'){document.getElementById('greyOut').addEventListener('click', closePopUp, false);}
			if(typeof document.getElementById('greyOut').attachEvent != 'undefined'){document.getElementById('greyOut').attachEvent('onclick', closePopUp);}

			newElement = document.createElement('div');
			newElement.setAttribute('id', 'popOuter');
			newElement.innerHTML='<div id="popInner"><div id="closeBtnOuter"><a href="javascript:closePopUp();"><img src="sitePickerPopup/close.png" alt="close this pop up" /></a></div><div id="greyBoxOuter"><div id="greyBoxInner">'+spText+'</div></div></div>';
			document.getElementsByTagName('body')[0].appendChild(newElement);
		}
	}
};