/*
This function is used define the subSection variable (see above description) and load up the
you are here information into the YouHereSpan layer displayed at the top left of the page
*/
function youAreHere(currloc) {
	if (YouHereSpan.innerHTML) {
//		top.document.all.YouHereSpan.innerHTML = 'You Are Here: ' + currloc
		YouHereSpan.innerHTML = 'You Are Here: ' + currloc
	}
}
function comeSoon() {
	alert("This feature will be available soon!")
}
function NewPopUpWindow(mypage,myname,w,h,scroll){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	settings = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
	win=window.open(mypage,myname,settings)
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
