﻿<!-- hide
function captcha()
{
var rnum =  Math.round(Math.sqrt(Math.random()*100));
var snum = new String();
document.write( "<input name=\"cap\" type=\"text\" size=7>" );
document.write( "&nbsp;" );
for ( var i=0; i<7;i++)
{
	if(rnum == 10) {rnum--};
	snum = snum + rnum;
	document.write("<img src=\"http://www.azovhotel.ru/image/captcha/" + rnum + ".gif\" >");
	rnum =  Math.round(Math.sqrt(Math.round(Math.random()*100)));
}
document.write(  "<INPUT TYPE=HIDDEN NAME=\"hcap\" VALUE=\"" + snum + "\">" );
}
function clickBack()
{
	history.go(-1);
}
// -->
