
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "40px";
	
	popUp.style.left = "80px";
	
	popUp.style.width = "340px";
	
	popUp.style.height = "431px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText +
	
	"<div id=\"statusbar\"><input type='image' src ='http://www.courtyardgalway.ie/includes/imgs/pop-up-close.jpg' onclick='hidePopup();'></div>";
	
	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer")
	{
		if(navigator.appVersion.indexOf('MSIE 8.0') != -1){
		
			sbar.style.marginLeft = (parseInt(h)+103) + "px";
	
			sbar.style.marginTop = (parseInt(h)-622) + "px";
		
		}
		else{
			sbar.style.marginLeft = (parseInt(h)+103) + "px";
	
			sbar.style.marginTop = (parseInt(h)-622) + "px";
		}
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+103) + "px";
	
		sbar.style.marginTop = (parseInt(h)-622) + "px";
	}
	
	popUp.style.visibility = "visible";
}


function hidePopup(){

	var popUp = document.getElementById("popupcontent");
	
	popUp.style.visibility = "hidden";

}
