function show(id, st) {
var d = document.getElementById(id);
var skip=-1;
	for (var i = 0; i<document.getElementById('page_sub_nav').childNodes.length; i++) {
		if (skip != i && document.getElementById('submenu'+i)) {document.getElementById('submenu'+i).style.display='none';}
		if (skip == i && document.getElementById('submenu'+i)){document.getElementById('submenu'+i).style.display='block';}
	} 
if (d) {
	d.style.display='block';
	var div = document.getElementById('page_menu');
	for (var i = 0; i < div.childNodes[0].childNodes.length; i++){
		if(div.childNodes[0].childNodes[i].childNodes[0].className != "notact"){
			if(!st || st!=div.childNodes[0].childNodes[i].childNodes[0]){
				div.childNodes[0].childNodes[i].childNodes[0].className = "notact";
			}
		}
	}
	if(st){if(st.className!="nav_current"){st.className = "nav_current"}}
}
return false;
}
 
/*window.onload=show;*/
function OpenWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

