function opPict(img,w,h,alt) {
	op=window.open('','','width='+w+'; height='+h);
	op.document.write('<html><head><title>'+alt+'</title>');
	op.document.write('</head><body topmargin=0 leftmargin=0>');
	op.document.write('<img src='+img+' width='+w+' height='+h+' alt="'+alt+'">');
	op.document.write('</body></html>');
}
function opWind(url) {
	window.open(url,'','width=550; height=750; scrolling=yes');
}
