function bigimage(image,title,wid,hgt){
sw=(screen.width-wid)/2;
sh=(screen.height-hgt)/2;
newwin=window.open('','newwin','width='+wid+',height='+hgt+',scrollbars=0,menubars=0,toolbars=0,location=0,directories=0,status=0,top='+sh+',left='+sw+'');
newwin.document.open();
newwin.document.write('<meta http-equiv="Imagetoolbar" content="no" />\n');
newwin.document.write('<title>'+title+'</title>\n');
newwin.document.write('</head>');
newwin.document.write('<body style="margin:0;padding:2">\n<img src="'+image+'" width="'+wid+'" height="'+hgt+'" />');
newwin.document.write('\n</body></html>');
newwin.document.close();
newwin.focus();
}