 
function ShowPopup(hoveritem) 
{ 
hp = document.getElementById("hoverpopup"); 

// Set position of hover-over popup 
//hp.style.top = hoveritem.offsetTop + 18; 
//hp.style.left = hoveritem.offsetLeft + 200; 

// Set popup to visible 
hp.style.visibility = "Visible"; 
 
} 

function HidePopup() 
{ 
hp = document.getElementById("hoverpopup"); 
hp.style.visibility = "Hidden"; 
} 




// Popup window code
function newPopup(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
