var MiniWin;
function OpenMiniWin(url, width, height) {
   if (MiniWin) MiniWin.close();
   MiniWin=window.open (url, 'MiniWin', 'width='+width+',height='+height+',resizable=0,screenX=40,screenY=30,top=40,left=30');
   MiniWin.document.open();
   MiniWin.document.writeln("<HTML><HEAD><TITLE>Daily Apartments | Аренда квартир посуточно в Киеве</TITLE></HEAD><BODY leftmargin=0 topmargin=0><img src='"+url+"' width="+width+" height="+height+" border=0></BODY></HTML>");
   MiniWin.document.close();
   MiniWin.focus();
}
function printdiv(id){
         MiniWin=window.open ('', 'MiniWin', "780, 590 , 'scrollbars=yes, resizable=yes'");
         MiniWin.document.open();
         MiniWin.document.writeln("<HTML><HEAD><TITLE>zemli.com.ua </TITLE></HEAD><style>.red {color: #B20000;} html, head, body, table, th, tr, td, p, div, span {font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;font-size: 11px;color: #003506;}</style><BODY leftmargin=0 topmargin=0 bgcolor='#86C06D'><center><div id='contents' style='width:500px;align:center'></div></center></BODY></HTML>");
         MiniWin.document.close();
         MiniWin.focus();
         MiniWin.document.getElementById('contents').innerHTML=document.getElementById(id).innerHTML;
         MiniWin.print();
}

