
		
var soft_name=navigator.appName;
var windowRef;

function openWin(index)
{
   if(soft_name=="Microsoft Internet Explorer")
      if(index)
      {
         windowRef=window.open("Roenari.htm","","width="+screen.width+",height="+screen.height+",top=0,left=0");
         windowRef.moveTo(-5,-30);
		 //width(寬度)=screen(映像管)寬度 ,height(高度)=screen(映像管)高度 ,距離頂端=0 ,距離左邊=0;
		 //moveTo(移動)
      }
      else
	 	 //window.open("cn/company.asp?direct=0101","","fullscreen=1");
        window.open("Roenari.htm","","fullscreen=1");
   else
      alert("本站不支援您目前使用的瀏覽器，請改用IE 瀏覽器來瀏覽網頁以取得最佳畫面顯示");
}
function ViewPart(position)
{
	if (window.document.all(position).style.display=="none")
	{
		window.document.all(position).style.display="";
		//window.document.all(position).style.backgroundColor="#FFFFFF";
		//window.document.all(position).style.bgcolor="#000000";
	}
	else
	{
		window.document.all(position).style.display="none";
	}
	
}
function mo(o){o.className=='stateoff'?o.className='stateon': o.className=o.className; }
function mx(o){o.className=='stateon'?o.className='stateoff': o.className=o.className; }