

function StartCenter()
{
	if(document.all) 
	{
	
		document.all.FloatingAdCenter.style.pixelLeft = (document.body.clientWidth /3);
		
		//document.all.FloatingAdCenter.style.pixelTop = 500;
		
		document.all.FloatingAdCenter.style.visibility = 'visible';
		Type = 'all';
	}
	else if(document.getElementById) // Compatible with Firefox & Netscape
	{
		
		document.getElementById('FloatingAdCenter').style.left = (window.innerWidth/3)  + 'px';
		
	//	document.all.FloatingAdCenter.style.pixelTop = 500;
		
		document.getElementById('FloatingAdCenter').style.visibility = 'visible';
		Type = 'getelement';
	}
	

}
function closeAd(adArea)
{
	adArea.parentNode.style.display = 'none';
}