// JScript source code

var lastTarget=null;
function toggle( targetId ){

    target = document.getElementById( targetId );
    if (target.style.display == "none"){
        target.style.display = "block";
        document.cookie = 'section=' + targetId + '; expires=Monday, 04-Apr-2010 05:00:00 GMT; path=/'
        if (! ((lastTarget==null) || (lastTarget==target)) )
        {
            lastTarget.style.display = "none";
        }
        lastTarget=target;
    } else {
        target.style.display = "none";
        lastTarget=null;
        document.cookie = 'section=xxx; expires=Monday, 04-Apr-2010 05:00:00 GMT; path=/'
    }
	
	// turn off the other menu items

}

function hidedivs(numberOfDivs){
	for (i=0; i<numberOfDivs; i++){
		document.getElementById( 'subcontent' + i ).style.display = "none";
	}

//window.alert(document.cookie.substring(45));
var start=document.cookie.indexOf('section=');
//window.alert(start);
//window.alert(lastSection);

	if (start >0) {
		strCookieValue = document.cookie.substring(start+8);
		toggle(strCookieValue);
	}

}
