
var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "0px";
	
	popUp.style.left = "10px";
	
	popUp.style.width = "398px";
	
	popUp.style.height = "417px";

		
	if (baseText == null) baseText = popUp.innerHTML;
				
	popUp.innerHTML = baseText +
	
	"<div id=\"statusbar\"><input type='image' src ='http://www.dromolandcollection.ie/images/close2.jpg' onclick='hidePopup();'></div>";
	
	var sbar = document.getElementById("statusbar");
	
	var browser=navigator.appName;
	var version=navigator.appVersion;
	
	if(browser=="Microsoft Internet Explorer")
	{
		if(version.indexOf('MSIE 8.0') != -1){
		sbar.style.marginLeft = (parseInt(h)+68) + "px";
	
		sbar.style.marginTop = (parseInt(h)-510) + "px";
			
		}
		else{
		sbar.style.marginLeft = (parseInt(h)+68) + "px";
	
		sbar.style.marginTop = (parseInt(h)-510) + "px";
		}
	}
	else
	{
		sbar.style.marginLeft = (parseInt(h)+68) + "px";
	
		sbar.style.marginTop = (parseInt(h)-510) + "px";
	}
	
	popUp.style.visibility = "visible";
}


function hidePopup(){

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

}

