<!--
// FLASH - HTML AUTOSCROLL
function size(w,h,sw,sh)
{
var bw = document.body.clientWidth;
var bh = document.body.clientHeight;
//alert(" w:"+w + " h:"+h + " sw:"+sw + " sh:"+sh + " bw:"+bw +" bh:"+bh);

//vertical autoscroll
if (h >= bh) {
 window.document.getElementById('mastertable').height = h;
 window.document.getElementById('mastertd').height = h;
} else if (h < bh) {
 window.document.getElementById('mastertable').height = '100%';
 window.document.getElementById('mastertd').height = '100%';
}



}

function pagetop()
{
	this.scroll(0,0);
}
 
 
 
//-->