
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "-170px";
	
	popUp.style.left = "110px";
	
	popUp.style.width = "334px";
	
	popUp.style.height = "419px";

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

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

}


function hidePopup(){

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

}
