// JavaScript Document
var f=0;
var y=0;
var div_obj
function over(obj,url){
 div_obj=obj
 _f=0;
 y=0;
 var str="<a name=\"show\"></a><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"580\"><tr><td height=\"35\" width=\"128\"><img src=\"images/logo.jpg\" height=\"35\" width=\"128\" border=\"0\"></td><td align=\"right\"><img src=\"images/back.gif\" height=\"18\" width=\"18\" border=\"0\" onClick=\"showwin.history.go(-1);\" style=\"cursor:pointer;\" alt=\"返回\">&nbsp;<img src=\"images/close.gif\" alt=\"关闭\" height=\"18\" width=\"18\" border=\"0\" onClick=\"javascript:Tout()\" style=\"cursor:pointer;\">&nbsp;</td></tr><tr><td colspan=\"3\"><table width=\"98%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#FFFFFF\"><tr><td height=\"530\"><IFRAME name=\"showwin\" src="+url+" frameBorder=0 width=100% height=\"530\" style=\"overflow-x:hidden;\"></IFRAME></td></tr></table></td></tr></table>";

 document.getElementById(obj).innerHTML=str;
 document.getElementById(obj).style.width="0px";
 document.getElementById(obj).style.height="1px";
 document.getElementById(obj).style.top= document.body.scrollTop+50+"px";
 document.getElementById(obj).style.left="300px";
 document.body.style.overflow="hidden";
 document.getElementById("myback").style.display="block";
 document.getElementById(obj).style.display="block";

 timerDIV();
}
function out(obj){
 obj.style.display="none";
 document.getElementById("myback").style.display="none";
}
function Tout(){
document.getElementById(div_obj).style.display="none";
document.getElementById("myback").style.display="none";
document.body.style.overflow="auto";
}
function Tover(){
 document.getElementById(div_obj).style.display="block";
 document.getElementById("myback").style.display="block";
}
function timerDIV(){
 if( _f >= 800){/*宽度*/
  objy();
  return ;
 }
 else{
  _f=_f+10;
  document.getElementById(div_obj).style.width=_f+"px";
  window.setTimeout(timerDIV,1);
 }
}
function objy(){
 if(y >= 590){/*高度*/
  return ;
 }
 else{
  y+=6;
  document.getElementById(div_obj).style.height=y+"px"; 
  window.setTimeout(objy,1);
 }
}