function upt(){
	if (document.all){
		var fc = document.all.flashindex;
		var dc = document.all.farea;
	}else if (document.getElementById){  
		var fc = document.getElementById("flashindex");
		var dc = document.getElementById("farea");
	}else{  
		var fc = document.flashindex;
		var dc = document.farea;
	}
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
	  myWidth = window.innerWidth-16;
	  myHeight = window.innerHeight-16;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	  myWidth = document.documentElement.clientWidth-20;
	  myHeight = document.documentElement.clientHeight-20;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	  myWidth = document.body.clientWidth-20;
	  myHeight = document.body.clientHeight-20;
	}
	var data_area_width = 1000;
	var data_area_height = 650;
	if(myWidth<data_area_width){
		fc.style.left = (data_area_width-1600)*0.5;
		fc.style.width = 1600;
		dc.style.width = data_area_width;
		window.scrollTo((data_area_width-myWidth)*0.5,0);
	}else{
		fc.style.left = (myWidth-1600)*0.5;
		fc.style.width = 1600;
		dc.style.width = "100%";
	}
	if(myHeight<data_area_height){
		dc.style.height = data_area_height;
	}else{
		dc.style.height = "100%";
	}
	return false;
}
function rf(){
	return location.href;
}
function rt(n){
	if(n=="_"){
		document.title = "AXIFER";
	}else{
		document.title = "AXIFER | "+n;
	}
}
