function imagePopUp2(obj,w,h,descrtn) { var imgPath = obj; var newWindow = window.open("","", "status=0, TOP=200, LEFT=200, WIDTH="+parseInt(w+500)+",HEIGHT="+parseInt(h+100)); newWindow.document.write("<title>Схема проезда</title>"); newWindow.document.write("                                      <p style='color:#000000; font-family:'Arial',sans-serif; font-size:14px; text-align:justify; margin-top:4pt; margin-bottom:1pt;'><img src="+imgPath+" width="+w+" height="+h+" style='cursor:pointer' onclick='window.close();' align='left' hspace='10' vspace='10' border='0' alt='Закрыть изображение'><b>Адрес офиса</b>:<br />                                  "+descrtn+"<br />                          <br />                                телефон в Москве: (495) 782-00-43<br />                                                                                    телефон в Санкт-Петербурге: (812) 313-32-43<br />телефон в Рязани: (4912) 46-50-60<br />телефон в Твери: (4822) 53-36-05<br />телефон в Калуге: (4842) 22-49-27<br />                           <br />                                                                                <a style='font-size:14px; font-weight:bold; color:#FF9305; text-decoration:none;' href='javascript:window.print();'>Распечатать схему проезда</a></p>                                      "); newWindow.document.write("");newWindow.document.close(); } 
