/**
 * @author zimjoe
 */
/*
 * @summary this is an old pop up from my old site
 * @param {Object} p The picture url
 * @param {Object} w The width of the picture
 * @param {Object} h the height of the picture
 */
function popPicture(p,w,h){
	_w = window.open(p,"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();">');
	_w.document.write('<img src=\"'+p+'\" width=\"'+w+'\" height=\"'+h+'\" border=\"0\">');
	_w.document.write('</body></html>');
	_w.document.close();
}
