<!-- //

var s_current = -1;

function sectionLoad(num){
if (document.getElementById && document.getElementById('sub0')){
 if (s_current != num){
  if (s_current >= 0){
	 document.getElementById('sub'+s_current).style.display = "none";
	}
	document.getElementById('sub'+num).style.display = "block";
 }
 s_current = num;
}
}

function sectionLink(){
if (document.getElementById){
 a = location.href;
 if (a.indexOf("?") > 0){
  a = a.substring(a.indexOf("?")+1, a.length);
	sectionLoad(a);
 } else {
  sectionLoad(0);
 }
}
}
// -->
