var pop_height = screen.height *.70
var pop_width = screen.width *.80
var strPopup = "height=" + pop_height + ",width=" + pop_width + ",top=10,left=10,status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes"
var strPopupNM = "height=" + pop_height + ",width=" + pop_width + ",top=10,left=10,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes"

function loadPopup(url)
{
	var winPopup = window.open(url, "ImagePopup", strPopup)
	winPopup.focus()
}
function loadPopupNM(url)
{
	var winPopup = window.open(url, "ImagePopup", strPopupNM)
	winPopup.focus()
}

