function setMenuSize(menuName, newHeight, menuCount)
{         
  document.getElementById(menuName + 'Object').style.height = newHeight+'px';
  document.getElementById('flashContent').style.height = newHeight+'px';
}

function poponload(url,pagename)
{
window.open(url,"preview","toolbar=0,menubar=0,location=0,status=0,scrollbars=1,width=800,height=800");
}

function showCover(w,msg){
		msg = msg == "" ? "Please Wait.." : msg
		var cover = w.document.getElementById("cover");
		var pleaseWait = w.document.getElementById("pleaseWait");
		var pleaseWaitText = w.document.getElementById("pleaseWaitText");
		pleaseWaitText.innerHTML = msg;
		cover.style.width = screen.width+"px";
		cover.style.height = "2000px";
		var pleaseWaitHeight = pleaseWait.style.height.substr(0,pleaseWait.style.height.indexOf("px")-1);
		var pleaseWaitWidth = pleaseWait.style.width.substr(0,pleaseWait.style.width.indexOf("px")-1);
		pleaseWait.style.left = ((screen.width/2)-(pleaseWaitWidth/2))+"px";
		pleaseWait.style.display="block";
		cover.style.display="block";
}
