// JavaScript Functions
var win=null;
function NewWindow(mypage,myname,picSrc){

var theImage = new Image();
theImage.src = picSrc;
var width  = theImage.width;
var height = theImage.height;


if((theImage.width!=0)&&(theImage.height!=0)){
var winwidth = width+40;
var winheight = height+70;

LeftPosition=(screen.availWidth)?(screen.availWidth-winwidth)/2:50;
TopPosition=(((screen.availHeight)?(screen.availHeight-winheight)/2:50)-80);

settings='width='+winwidth+',height='+winheight+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

win=window.open(mypage,myname,settings);
win.document.write("<html><head><title>"+myname+"</title></head><body topmargin='0' bgcolor='#e2e2e2'>");
win.document.write("<div align='center'>");
win.document.write("<p style='margin-top:6; margin-bottom:6'><font face='verdana' size='2' color='darkblue'>");
win.document.write("<b>"+myname+"</b></font></p>");
win.document.write("<img style='cursor:hand' border='2' src="+picSrc+" onClick='window.close();'>");
win.document.write("<p style='margin-top:8; margin-bottom:4'><a href='JavaScript:window.close()'><font face='verdana' size='2' color='darkblue'>Click here or on the image to close this window</a>");
win.document.write("</p></div></body></html>");
win.document.close();
}
}