

function photo_win(img_path,img_alt){
var str, StrBody;

	str = 'resizable=no,width=100,height=100,screenX=100,screenY=100,left=100,top=100';
	
	if (document.all){ 
		StrBody = '<body marginwidth="19" marginheight="19" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="White" onblur="self.window.close();" onresize="self.window.location.reload();">';
	} else {
		StrBody = '<body marginwidth="19" marginheight="19" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="White" onblur="self.window.close();">';
	}
		
	var win_op = window.open('','show', str);
	win_op.document.open();
	win_op.document.writeln('<html>');
	win_op.document.writeln('<head>');
	win_op.document.writeln('<title>' + img_alt + '</title>');
	win_op.document.writeln('<script>');
	win_op.document.writeln('function resize_img() {');
	win_op.document.writeln('var width = document.image.width;');
	win_op.document.writeln('var height = document.image.height;');
	win_op.document.writeln('if (!(document.all)){ self.resizeTo(width+38,height+38); } else { self.resizeTo((width+50),(height + 69));');
	win_op.document.writeln(' }');
	win_op.document.writeln('}');
	win_op.document.writeln('</script>');
	win_op.document.writeln('</head>');
	win_op.document.writeln(StrBody);
	win_op.document.writeln('<table border="0" cellspacing="0" cellpadding="1"><tr><td bgcolor="#ffffff"><table border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="middle"><img class="border" border="1" hspace="19" vspace="19" name="image" src='+ img_path + ' alt="'+img_alt+'" onload="resize_img();"></td></tr></table></td></tr></table>');
	win_op.document.writeln('</body>');
	win_op.document.writeln('</html>');		
	win_op.document.close();
}

