  function onLoad()
  {     
		var td= document.all('tdFlash'); 
		td.width = document.body.clientWidth;
		td.height =document.body.clientHeight;   
  } 
function ClosePromo()
{
	var divFlash = document.getElementById("divPromo");
	var divMain = document.getElementById("divHomePage");
	
	divFlash.style.display = "none";
	divMain.style.display = "inline";
}
function getSize(type)
{
  var height=document.body.clientHeight; 
  var width=document.body.clientWidth;
  if(type=='h'){return height;} 
  if(type=='w'){return width;}         
}
 



