<!-- hide
var new_window = null;
function ViewImage(imfile,x,y,imtitle) { 
LeftPosition=(screen.width)?(screen.width-x)/2:100;
TopPosition=(screen.height)?(screen.height-y)/2:100;
var win;
win = window.open("","","width="+x+",height="+y+",menubar=no,,border=no,toolbar=no,left="+LeftPosition+",top="+TopPosition+",resizable=no");
win.document.open();
win.document.write("<html><head><title>"+imtitle+"</title>");
win.document.write("</head><body bgcolor=white topmargin=0 leftmargin=0 marginheight=0 marginwidth=0");
win.document.write("<a href=''><img src="+imfile+" width="+x+" height="+y+" border=0 alt="+imtitle+"></a></body></html>");

}
// done hiding -->

