function viewBigImage(name,w,h)
{
var Settings = "toolbar=no, directories=no, location=no, width="+w+", height="+h+", left=200, top=150, status=no, scrollbars=no, resize=no";
var myWindow = window.open ("","",Settings);
myWindow.document.write ('<html><head><title>&nbsp;</title></head><body style="margin:0px; background-color: #F4F1E0; font-size:11px; font-weight:bold; color:#614230; font-family:Verdana; cursor:hand;" onClick="window.close();"><center><img src=images/'+name+' border=0><br>click to close</center></body></html>');
myWindow.document.close();
}