// JavaScript Document


var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");
	
	popUp.style.top = "96px";
	
	popUp.style.right = "150px";
	
	popUp.style.width = "262px";
	
	popUp.style.height = "286px";

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

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

}


function hidePopup(){

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

}
