var pop_height = screen.height *1

var pop_width = screen.width *.80
var pop_height2 = "300px"

var pop_width2 = "400px"

var pop_height3 = "450px"

var pop_width3 = "400px"

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"

var strPopupNM2 = "height=" + pop_height2 + ",width=" + pop_width2 + ",top=10,left=10,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes"

var strPopupNM3 = "height=" + pop_height3 + ",width=" + pop_width3 + ",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()

}
function loadPopupNM2(url)

{

        var winPopup = window.open(url, "ImagePopup", strPopupNM2)

        winPopup.focus()

}
function loadPopupNM3(url)

{

        var winPopup = window.open(url, "ImagePopup", strPopupNM3)

        winPopup.focus()

}

