function hide()
{
	//alert(document.body.scrollWidth);
	if(document.body.scrollWidth < 860)
	{
		document.getElementById('last').style.display="none";
		document.getElementById('promo').className="promo2";
	}
	else
	{
		document.getElementById('promo').className="promo3";
		document.getElementById('last').style.display="block";
	}
}
function inpres()
{
	if(document.getElementById('SEARCHFOR').style.width < 90)
	{
		document.getElementById('SEARCHFOR').style.width=90+"px";
		
	}
	else
	{
		if(document.getElementById('SEARCHFOR').style.width > 200)
		{
		document.getElementById('SEARCHFOR').style.width=200+"px";
		}
		else
		{
		document.getElementById('SEARCHFOR').style.width="auto";
		}
	}

}