var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	var browser=navigator.appName;
	
	if(browser=="Microsoft Internet Explorer")
	{
		popUp.style.marginLeft = (parseInt(h)-278) + "px";
	
		popUp.style.marginTop = (parseInt(h)-300) + "px";
	}
	else
	{
		popUp.style.marginLeft = (parseInt(h)-131) + "px";
	
		popUp.style.marginTop = (parseInt(h)-300) + "px";
	}
	
	popUp.style.visibility = "visible";
}


function hidePopup(){

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

}
