
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "-85px";
	
	popUp.style.left = "520px";
	
	popUp.style.width = "245px";
	
	popUp.style.height = "262px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText +
	
	"<div id=\"statusbar\"><input type='image' src ='http://www.clareinnhotel.com/includes/imgs/close.jpg' onclick='hidePopup();'></div>";
	
	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer")
	{

		if((navigator.appVersion.indexOf('MSIE 7.0') != -1) || (navigator.appVersion.indexOf('MSIE 6.0') != -1)){
		
			sbar.style.position = 'absolute';
			sbar.style.marginLeft = (parseInt(h)+22) + "px";
	
			sbar.style.marginTop = (parseInt(h)-460) + "px";
		
		}
		else{
			sbar.style.position = 'absolute';
			sbar.style.marginLeft = (parseInt(h)+22) + "px";
	
			sbar.style.marginTop = (parseInt(h)-460) + "px";
		}

	}
	else
	{
		sbar.style.position = 'absolute';
		sbar.style.marginLeft = (parseInt(h)+22) + "px";
	
		sbar.style.marginTop = (parseInt(h)-460) + "px";
	}
	
	popUp.style.visibility = "visible";
}


function hidePopup(){

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

}
