function img_popup(image,w,h) {
	var win=window.open('about:blank','_blank','scrollbars=no,resizable=no,width='+w+',height='+h);
	var doc=win.document;

	doc.write(
'<html>'+
'<head>'+
'	<title>Bride and the City</title>'+
'	<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"/>'+
'</head>'+
'<body style="margin:0 0 0 0; padding:0 0 0 0">'+
'	<img style="width:'+w+'px; height:'+h+'px; margin:0 0 0 0; border:0 0 0 0" src="'+image+'" />'+
'</body>'+
'</html>');

}