<!-- Begin
var newwindow
function imagepop(url , ImageView) {
if (newwindow && !newwindow.closed) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ newwindow=window.open('','','width=530,height=440,resizable=0') }
newwindow.document.writeln('<html> <head> <title> + ImageView + <\/title> <\/head> <body bgcolor=\"white\"> <center>');
newwindow.document.writeln('<img src=' + url + ' title=\"' + ImageView + '\" alt=\"' + ImageView + '\" >');
newwindow.document.writeln('<p><font size="2"> <a href="javascript:window.close()">Close</a>&nbsp;&nbsp;<a href="javascript:window.print()">Print</a></font></p>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); } 
}

// End -->