function setHeight(h)
{
	//document.getElementById("siteholder").style.height = h+"px";
	window.scroll(0,0); 
	setHtmlVars();
}

function setHtmlVars()
{
	var ScrollTop = document.body.scrollTop;
	if (ScrollTop == 0)			
	{
		if (window.pageYOffset)
	
			ScrollTop = window.pageYOffset;
		else
			ScrollTop = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
	}
		
	doPassVar("_root.htmlScrollPos", ScrollTop);

	Browser = navigator.appName;
	if (navigator.appName.substring(0,9)== "Microsoft") Browser = 'MSIE';
	if (Browser != 'MSIE')
	{
		doPassVar("_root.htmlInnerHeight", innerHeight);
	}
	else
	{
		doPassVar("_root.htmlInnerHeight", document.body.clientHeight);
	}
}

function doPassVar(name, args)
{		
	window.document.website.SetVariable(name, args);
}

function refresh()
{
		window.location = window.location;
		
		return null;
}

function refocus()
{
	window.focus();
	//return null;		
}

