
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "-75px";
	
	popUp.style.left = "-455px";
	
	popUp.style.width = "341px";
	
	popUp.style.height = "375px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText +
	
	"<div style='position:absolute;' id=\"statusbar\"><input type='image' src ='http://www.theheritage.com/includes/imgs/close.jpg' onclick='hidePopup();'></div>";

	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	var version=navigator.appVersion;
	if(browser=="Microsoft Internet Explorer")
	{
			
		if(version.indexOf('MSIE8.0') != -1){
		}
		else{
				sbar.style.marginLeft = (parseInt(h)+45) + "px";
				sbar.style.marginTop = (parseInt(h)-507) + "px";
		}
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+44) + "px";<!--860 663-->
	
		sbar.style.marginTop = (parseInt(h)-507) + "px";
	}
	
	popUp.style.visibility = "visible";

}


function hidePopup(){

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

}

