var cur_width = 0;
var max_width = 800;

function Adjust_Img(is_init)
{
	if(document.getElementById('the_img').width > max_width)
	{
		cur_width = document.getElementById('the_img').width;
		document.getElementById('the_img').width = max_width;
		document.getElementById('resized_msg').style.display='';
	}

	else if(document.getElementById('the_img').width<=max_width)
	{
		if(is_init)
			cur_width = document.getElementById('the_img').width;
		document.getElementById('the_img').width = cur_width;
		document.getElementById('resized_msg').style.display='none';
	}
}


function Error_Img(obj)
{
	obj.src = 'http://2mb.su/error.jpg';
	obj.width = obj.height = 100;
	return true;
}
