<!--
function OpenWindow(url, w, h) {
open(url, "", 'menubar=no,directories=no,location=no,resizable=no, target=viv scrollbars=yes,width='+w +',height='+h);
}
function showpic (name,w,h,title) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=no";
	myWin= open("", name,win);
	myWin.document.open();
	myWin.document.write("<html><head><title>"+title);
	myWin.document.write("</title></head><body topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0>");
	myWin.document.write("<img src='/images/cars/gallery/"+name+".jpg' width="+w+" height="+h+" border=0 alt='"+title+"'>");
	myWin.document.write("</body></html>");
}
function showpic_news (name,w,h) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=no";
	myWin= open("", name,win);
	myWin.document.open();
	var title;
	title ="Новости";
	myWin.document.write("<html><head><title>"+title);
	myWin.document.write("</title></head><body topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0>");
	myWin.document.write("<img src='/images/news/"+name+".jpg' width="+w+" height="+h+" border=0 alt='Новости'>");
	myWin.document.write("</body></html>");
}
function showgallery (namewin,name,w,h,title) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=no";
	myWin= open("", namewin,win);
	myWin.document.open();
	myWin.document.write("<html><head><title>"+title);
	myWin.document.write("</title></head><body topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0>");
	myWin.document.write("<img src='/images/gallery/"+name+".jpg' width="+w+" height="+h+" border=0 alt='"+title+"'>");
	myWin.document.write("</body></html>");
}
//-->

