<!--
// FILE NAME: imageframe.js
// AUTHOR: Glendon Higgins
// FUNCTION: opens an image in a new window

function imageframe(imagePath, width, height)
{
settings="toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,"+
"width="+width+",height="+height+",left=20,top=45,screenX=20,screenY=45";
myFrame=window.open("imageframe.html","",settings);
myFrame.document.write("<html>\n");
myFrame.document.write("<head>\n");
myFrame.document.write("<title>Photo Frame</title>\n");
myFrame.document.write("</head>\n");

myFrame.document.write("<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0'>\n");
myFrame.document.write("<img src="+imagePath+"\n");
myFrame.document.write("</body>\n");
myFrame.document.write("</html>\n");
}
//-->