function refresh( sURL) { window.location.replace( sURL ); }

function resizeAjust(){
	if( $(window).height() < 580 ){
		$("#flashcontent").css( "height", 580 );
	}else{
		$("#flashcontent").css( "height", "100%" );
	}
	
	if( $(window).width() < 960 ){
		$("#flashcontent").css( "width", 960 );
	}else{
		$("#flashcontent").css( "width", "100%" );
	}
}

$(document).ready( function(){
	resizeAjust();
});
$(window).resize(function(){
  resizeAjust();
});