// JavaScript Document
function findMe(target, subtarget){
	document.getElementById(target).className = "sel";
	var subChildren = document.getElementById('sec_nav').childNodes[3].childNodes;
	var subIndex = 0;
//	for (i = 0; i < subChildren.length; i++) {
//		if( subChildren[i].nodeType == 1 ) {
//			subChildren[i].childNodes[subIndex].className = "subUnSel";
//			alert( "SubNode: " + subChildren[i].childNodes[subIndex] );
//		}
//	}
	if (subtarget != null){
		document.getElementById(subtarget).childNodes[subIndex].className = "subSel";
//		alert(document.getElementById(subtarget).childNodes[subIndex]);
//		document.getElementById(subtarget).className='subSel';
//		alert( "Child of " +subtarget+" count: " + subRootE.childNodes.length );
//		for( i = 0; i < subRootE.childNodes.length; i++ ) {
//			alert( "ChildAt: " + i +" = " + subRootE.childNodes[i].nodeName );
//		}
	}
}

function blank(path) {
mywindow = window.open(path,'mywindow','width=300,height=490,status=no,menubar=no,menu=no,resizable=yes,scrollbars=yes');

mywindow.focus();
return false;
}
