// JavaScript Document

function PopupWindow(theURL) { //v2.0
 if (! window.focus) return true;
  var href;
  if (typeof(theURL) == 'string')
    href=theURL;
  else
    href=theURL.href;
  window.open(href, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=620,height=450");
  return false;
}

//*关闭图层
function  closediv()
{
	 if(!document.layers)
	 {
	   clearTimeout(stoptimeoutid);
	   divStayTopLeft.style.display="none";
	 }
}

//*****-------------------------------------移入与移出色彩改变
function mOvr(src,clrOver)
{ 
	if(!src.contains(event.fromElement))
	{src.style.cursor='default';
	src.bgColor = clrOver;
	}
}

function mOut(src,clrIn)
{ 
	if(!src.contains(event.toElement))
	{src.style.cursor='default'; 
	src.bgColor=clrIn; }
} 

//-------------------------------------************
 function Trim(w_st)
  {
    v_st=""
    
    for(i=0;i<w_st.length;i++)
     {
       if (w_st.charAt(i)!=" ")
        v_st=v_st+w_st.charAt(i) 
      }
      
   return(v_st)
  } 



