

function redirect4(){
	window.location.href = '/Article_4.html';
}
	

function redirect3(){
	window.location.href = '/Article_38.html';
}

function redirect2(){
	//window.location.href = 'http://avtoban.testserv.3wstyle.ru/img/kupon5proc.jpg';
	var wo = window.open("", "abc", "width = 640 , height =480, scrollbars=0, status=0, menubar=1");
	wo.document.open();
	var win = "";
	win = "<html><head><title>";
	win += "Купон на скидку 5%";
	win += "</title></head>"
	win += "<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>";
	win += "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center'>";
	win += "<a href='javascript:window.print();'><img src='/img/kupon5proc.jpg' width='309' height='172' border='0' alt=''></a>";
	win += "</td></tr></table>";
	win += "</body></html>";

	wo.window.resizeTo(640, 480);
	wo.document.write(win);
	wo.window.focus();
	wo.document.close();
	}

function wopen(imgName, w , h, Title)
{
	var wo = window.open("", "abc", "width = " + w + " , height = " + h + ", scrollbars=0, status=0");
	wo.document.open();
	var win = "";
	win = "<html><head><title>";
	win += Title;
	win += "</title></head>"
	win += "<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>";
	win += "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center'>";
	win += "<a href='#' onClick='self.window.close();'><img src='" + imgName + "' width='" + w + "' height='" + h + "' border='0' alt='" + Title + "'></a>";
	win += "</td></tr></table>";
	win += "</body></html>";
	w += 8;
	h += 26;
	wo.window.resizeTo(w, h);
	wo.document.write(win);
	wo.window.focus();
	wo.document.close();	
}
