function ResizeFrame()
{
	Createrequest('scallyroo');
}

function Createrequest(fname)
{
   var main = this.document.getElementById('bodyid');
   var h = main.offsetHeight;
	
   ifrm = document.createElement("IFRAME");
   ifrm.setAttribute("src", "http://216.246.31.82/d.html#"+h);
   ifrm.style.display = "none";
   document.body.appendChild(ifrm);
}