
function my_popup2 ( img_scr, img_name, img_w, img_h ) {
	alert(123);
}

function my_popup ( img_scr, img_name, img_w, img_h ) {

	var generator = window.open( '', 'name', 'width=' + img_w + ',height=' + img_h + '' );
	generator.document.write( '<html><head><title></title></head>');
	generator.document.write( '<body style="margin: 0px; padding: 0px;">');
	generator.document.write( '<a href="javascript:close()"><img src="/' + img_scr + '" style="border:0px;"/></a>');
	generator.document.write( '</body></html>');

}
