var huge_fn = '', huge_fn_width=0, huge_fn_height=0;

// Определение высоты видимой части страницы
function windowHeight() {
	var de = document.documentElement;
	return self.innerHeight || ( de && de.clientHeight ) || document.body.clientHeight;
}

// Определение ширины видимой части страницы
function windowWidth() {
	var de = document.documentElement;
	return self.innerWidth || ( de && de.clientWidth ) || document.body.clientWidth;
}

function getBodyScrollTop()
{
	return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
}

function getBodyScrollLeft()
{
	return self.pageXOffset || (document.documentElement && document.documentElement.scrollLeft) || (document.body && document.body.scrollLeft);
}

function verify_zoom_button()
{
var zoom_button = document.getElementById("zoom_button");

if(huge_fn!='')
	zoom_button.style.display="block";
else
	zoom_button.style.display="none";



}
 
