
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "134px";
	
	popUp.style.left = "50%";
	
	popUp.style.width = "295px";
	
	popUp.style.height = "350px";

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

	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer")
	{
		sbar.style.marginLeft = (parseInt(h)+74) + "px";
	
		sbar.style.marginTop = (parseInt(h)-550) + "px";
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+74) + "px";<!--860 663-->
	
		sbar.style.marginTop = (parseInt(h)-550) + "px";
	}
	
	popUp.style.visibility = "visible";

}


function hidePopup(){

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

}

