function resizeFlash( h ) {
	document.getElementById( "siteid" ).height = h;
};

function scrollPage( distance ){
	for( i = document.body.scrollTop; i > distance ; i-= 5 ){
		scrollTo( 0 , ( i ) );
	}
};