function lrg($picURL,$w,$h){
 newWindow=window.open('','newWin','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+$w+',height='+$h);
 newWindow.document.write('<html><head><\/head><body style="margin:0; padding:0;"><img src="'+$picURL+'" onclick="window.close();"><\/body><\/html>');
 newWindow.focus();
 newWindow.document.close();
}
