function MouseOn(This){
This.style.color="red";
This.style.textDecoration="underline";
}

function MouseOff(This){
This.style.color="";
This.style.textDecoration="";
}



function openpic1(This)
{
//evt = evt ? evt : (window.event ? window.event : null);
var popUpSizeX=500; //窗口的宽度
var popUpSizeY=400; //窗口的高度

var popUpLocationX=2;//距离左边的距离 相当于 left
var popUpLocationY=2;//距离顶端的距离 相当于 top

alert(This.src);
// URL of the popUp
var popUpURL=This.src; //打开页面的路径

// ** 下面的就不要随便改了 ***
splashWin = window.open("",'x','fullscreen=1, ,scrollbars=auto,resizable=1');
splashWin.blur(); // Hide while updating
window.focus();
splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
}


function ContentOnOff(This)
{

 var Structure_Name = This.id;
 var Structure_Content = "Content_"+Structure_Name;
 
 /*for (i=1;i<=10;i++)
 {
  if (document.getElementById("Content_Structure"+i)!=null)
     {
	    document.getElementById("Content_Structure"+i).style.display="none";  
     }
 }
*/
 if (document.getElementById( Structure_Content ).style.display=="none" || document.getElementById( Structure_Content ).style.display=="")
     { 
	   document.getElementById( Structure_Content ).style.display = "block";

	 }
  else
     { 
     document.getElementById( Structure_Content ).style.display="none";
	 }
}



