function popPicture(p,w,h){
	_w = window.open(" ","photo","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+w+",height="+h);
	_w.document.open();
	_w.document.write(
		"<html><head><title>picture</title></head>" +
		"<body leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" " +
		"onBlur=\"self.close();\">" +
		"<img src=\"images/"+p+"\" width=\""+w+"\" height=\""+h+"\" border=\"0\">" +
		"</body></html>"
	);
	_w.document.close();
}
