
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "-70px";
	
	popUp.style.left = "150px";
	
	popUp.style.width = "314px";
	
	popUp.style.height = "324px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText +
	
	"<div style='position:absolute;' id=\"statusbar\"><input type='image' src ='http://www.d4hotels.ie/includes/imgs/close.jpg' onclick='hidePopup();'></div>";

	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer")
	{
		sbar.style.marginLeft = (parseInt(h)+86) + "px";
	
		sbar.style.marginTop = (parseInt(h)-474) + "px";
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+86) + "px";<!--860 663-->
	
		sbar.style.marginTop = (parseInt(h)-474) + "px";
	}
	
	popUp.style.visibility = "visible";

}


function hidePopup(){

	var popUp = document.getElementById("popupcontent");
	
	popUp.style.visibility = "hidden";

}

