﻿//used by Default.aspx
//begin 
function showContent(i)
            {    
                showdiv(i);
                hidediv(i);
            }
function hidediv(id)
    { 
        for(j=1;j<=4;j++)
            {
                if(j!=id)
                    {
                        document.getElementById("content"+j).style.display="none";
                        document.getElementById("td"+j).style.backgroundImage="url(images/tta.gif)";
                    }
            }
    } 
function showdiv(id)
    {
        document.getElementById("content"+id).style.display="block";
        document.getElementById("td"+id).style.backgroundImage="url(images/ttb.gif)";
    }
function OpenBrWindow(theURL,winName,features) 
    { 
        window.open(theURL,winName,features); 
        onload="OpenBrWindow('../note.htm','通知','width=410px,height=150px,left=450px,top=120px,toolbar=no,menubar=no,scrollbars=no,location=no,resizable=no,location=no,status=no')"
        }
// end

