function openPic(image, width, height) 
{
	var win;
	if (win)
	{
        win.close();
	}
	win = window.open('', 'win', 'location=0, toolbar=0, menubar=0, scrollbars=0, height='+height+', width='+width+', status=0');
	win.document.write('<html><head><title>Бюро путешествий Улетай</title></head>');
	win.document.write('<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<a href="javascript: window.close()" title="Закрыть окно"><img src="'+image+'" width="'+width+'" height="'+height+'" border="0" /></a>');
	win.document.write('</body></html>');
	win.document.close();
}

