//--------------
//-- Open A Minimal New Window Containing MYIMAGE Of Size MYWIDTH+16 x MYHEIGHT+16 At Browser Window Location 64x64
//   winname contains the name of the window allowing it to open new windows for different sized images//	 Note: There should be no spaces within javascript window commands as Netscape cannot always handle them correctly
//--------------

function OPENIMAGE(MYIMAGE,WINNAME,MYWIDTH,MYHEIGHT)
{
MYHEIGHT +=16;
MYWIDTH +=16;

IMAGEWINDOW = window.open(MYIMAGE,WINNAME,"width="+MYWIDTH+",height="+MYHEIGHT+",left=64,top=64,"+
"screenX=64,screenY=64,location=no,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");

window.IMAGEWINDOW.focus();

return;
}

