// JavaScript Document

function resizeDiv(vHeight) {
	document.getElementById("background").style.height = vHeight+"px";
	self.scrollTo(0, 0);
	//alert("new height: "+vHeight+"px");
	// return a value to flash
	document.getElementById("background").asFunc(vHeight+"px");
}
