function open_imageWin(url)
{
newWindow=window.open(url,"imageDisplay","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=900, height=700")
newWindow.focus()
}


function open_win(url)
{
newWindow=window.open(url,"frameDisplay","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=700, height=600")
newWindow.focus()
}

function open_new_win(url)
{
newWindow=window.open(url,"newWindow","toolbar=yes, location=yes, directories=no, status=yes, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=no, width=600, height=800")
newWindow.focus()
}

function open_form(url)
{
newWindow=window.open(url,"formDisplay","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=750, height=600")
newWindow.focus()
}