
function zoom(picURL,width,height,title) {
	newWindow = window.open('','','toolbar=no,width='+width+',height='+height);
	newWindow.document.open();
	newWindow.document.clear();
	newWindow.document.write('<html><head><title>'+title+'<\/title><\/head>');
	newWindow.document.write('<body topmargin="0" leftmargin="0">');
	newWindow.document.write('<img src="'+picURL+'" onClick="window.close()" style="cursor:pointer;">');
	newWindow.document.write('<\/body><\/html>');
	newWindow.document.close();
	newWindow.focus(true);
}