
//定义新开窗口显示网页函数 -->

var newWindow = null;
function openWin(theURL,winName,features)
{       
        if (! newWindow || newWindow.closed)
        {
        newWindow = window.open(theURL,winName,features);
        }else
        {
                newWindow.focus();
        }
}
//结束 -->

// Begin  用于图片特效：鼠标移入图片透明义改变 -->

if ((navigator.appName.indexOf('Microsoft')+1)) {
document.write('<style type="text/css"> .opacity1 {filter:alpha(opacity=100)} .opacity2 {filter:alpha(opacity=50)} </style>'); }
if ((navigator.appName.indexOf('Netscape')+1)) {
document.write('<style type="text/css"> .opacity1 {-moz-opacity:1} .opacity2 {-moz-opacity:0.5} </style>'); }
else {
document.write(''); }

// End Preload Script -->

