 function openn(){
          var args = openn.arguments;
          if(args[0] == 0) return;
          location.href=(args[0]);
          }

<!-- //wh ¿í¶È    ht¸ß¶È
var flag=false; 
function DrawImage(ImgD,wh,ht){ 
 var image=new Image(); 
 image.src=ImgD.src; 
 if(image.width>0 && image.height>0){ 
  flag=true; 
  if(image.width/image.height>= wh/ht){ 
   if(image.width>wh){
    ImgD.width=wh; 
    ImgD.height=(image.height*wh)/image.width; 
   }else{ 
    ImgD.width=image.width;
    ImgD.height=image.height; 
   } 
   //ImgD.alt="Click to View Details..."; 
  } 
  else{ 
   if(image.height>ht){
    ImgD.height=ht; 
    ImgD.width=(image.width*ht)/image.height; 
   }else{ 
    ImgD.width=image.width;
    ImgD.height=image.height; 
   } 
  // ImgD.alt="Click to View Details..."; 
  } 
 }
}
//--> 
function doZoom(size){
	document.getElementById('news').style.fontSize=size+'px'
}

