
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "0px";
	
	popUp.style.left = "20px";
	
	popUp.style.width = "275px";
	
	popUp.style.height = "420px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText;
	
	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer")
	{
		sbar.style.marginLeft = (parseInt(h)+55) + "px";
	
		sbar.style.marginTop = (parseInt(h)-540) + "px";
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+54) + "px";
	
		sbar.style.marginTop = (parseInt(h)-540) + "px";
	}
	
	popUp.style.visibility = "visible";
}


function hidePopup(){

	var popUp = document.getElementById("popupcontent");
	
	popUp.style.visibility = "hidden";

}