<!-- Begin

// THIS FILE DICTATES CODE FOR OPENING THE ON MOUSE OVER POPUP

// THE WIDTH BELOW CONTROLS THE LEFT WHITESPACE

var baseText = null;

function showPopup(w,h){
	var popUp = document.getElementById("popupcontent");

popUp.style.top = "180px";
popUp.style.left = "200px";
popUp.style.width = w + "px";
popUp.style.height = h + "px";

if (baseText == null) baseText = popUp.innerHTML;
popUp.innerHTML = baseText + 
"<div id=\"statusbar\"><button onclick=\"hidePopup();\">Close window<button></div>";

var sbar = document.getElementById("statusbar");
sbar.style.marginTop = (parseInt(h)-250) + "px";
popUp.style.visibility = "visible";
}


function hidePopup(){
	var popUp = document.getElementById("popupcontent");
	popUp.style.visibility = "hidden";
}
//  End -->