/*marqueesHeight=20;
stopscroll=false;
with(notice_mn){
	  style.width=0;
	  style.height=marqueesHeight;
	  style.overflowX="visible";
	  style.overflowY="hidden";
	  noWrap=true;
	  onmouseover=new Function("stopscroll=true");
	  onmouseout=new Function("stopscroll=false");
  }
  preTop=0; currentTop=marqueesHeight; stoptime=0;
  notice_mn.innerHTML+=notice_mn.innerHTML;
  

function init_srolltext(){
  notice_mn.scrollTop=0;
  setInterval("scrollUp()",1);
}init_srolltext();

function scrollUp(){
  if(stopscroll==true) return;
  currentTop+=1;
  if(currentTop==marqueesHeight+1)
  {
  	stoptime+=1;
  	currentTop-=1;
  	if(stoptime==300) 
  	{
  		currentTop=0;
  		stoptime=0;  		
  	}
  }
  else {  	
	  preTop=notice_mn.scrollTop;
	  notice_mn.scrollTop+=1;
	  if(preTop==notice_mn.scrollTop){
	    notice_mn.scrollTop=marqueesHeight;
	    notice_mn.scrollTop+=1;
	    
	  }
  }

}
init_srolltext();*/
//¼ÓÔØÒ³Ãæ
function getPage(PageName,elementID){
   var xmlhttp;
   try
   {
     xmhhttp=new ActiveXObjec("Msxml2.XMLHTTP");
	}
	catch (e)
	{
	   try{
	     xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		 }
	   catch (e){
	         try{
			     xmlhttp=new XMLHttpRequest();
				 }
			catch (e){}
		}
	}
	
	xmlhttp.onreadystatechange=function()
	{
	 if(4==xmlhttp.readyState)
	 {
	   if(200==xmlhttp.status)
	   {	   
	     ff=xmlhttp.responseText;
		 show(ff,elementID); 		 
		}	
		else
		{
		alert(xmlhttp.status);
		}
	}
 }
 	var url=PageName;
	xmlhttp.open("get",url);
	xmlhttp.send(true);	
	}
function show(text,elementID)
{
	document.getElementById(elementID).innerHTML=text;
}