function show_hide(id)
{
		if (document.getElementById(id).style.display == 'none')
		{
			document.getElementById(id).style.display='';
		}
		else
		{
			document.getElementById(id).style.display='none';
		}
}

function zoomin(rout) {
	
 var fast = Math.random();
 fast = fast * 100;
 fast = Math.round(fast);
 var ffile = "test.php";
 //alert(ffile);
 myWin= open(ffile, "disp"+fast+"a",
   "height=200,width=200,status=no,toolbar=no,menubar=no,scrollbars=no");
 // открыть объект document для последующей печати
 myWin.document.open();
   // генерировать новый документ
 myWin.document.write("<html><head><title>MaxDrive - Авто Прокат");
 myWin.document.write("</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\"></head><body onLoad=\" window.resizeTo(document.newwin.width+6, document.newwin.height+32); window.moveTo(10,10);\" leftmargin=0 topmargin=0 rightmargin=0 bgcolor=#333333>");
 myWin.document.write("<table cellspacing=0 cellpadding=0 border=0 width=100% height=100%><tr><td valign=top>");
 myWin.document.write("<img border=0 name=newwin src="+rout+">");
 myWin.document.write("</td></tr>");
 myWin.document.write("</table>");
 myWin.document.write("</body></html>");
 // закрыть документ - (но не окно!)
 myWin.document.close();  }
 
 
 function confirm_to(href)
{
	if (confirm('Вы действительно хотите удалить?'))
	{
		window.location=href;		
	}
}
