function popUpWindow(URLStr, left, top, width, height)
{
popUpWin = window.open('', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
popUpWin.document.writeln("<html><head />");
popUpWin.document.writeln('<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginheight="0" marginwidth="0">');
popUpWin.document.writeln('<img src="' + URLStr + '" border="0" alt="Ресторан в Самаре «Дом туризма» &mdash; проведение банкета и свадьбы в Самаре,  организация презентаций в конференц-зале." onclick="window.close()">');
popUpWin.document.writeln("</html>");
}
                        

