	function ToggleView( id ) {
		status = ( GetElement(id).style.display == "none" ) ? "" : "none" ;	

		if ( id == "expand1" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand2" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand3" ) {
			GetElement(id).style.display = status
        }
		if ( id == "expand4" ) {
			GetElement(id).style.display = status
    	} 
		if ( id == "expand5" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand6" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand7" ) {
			GetElement(id).style.display = status
        }
		if ( id == "expand8" ) {
			GetElement(id).style.display = status
    	} 
		if ( id == "expand9" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand10" ) {
			GetElement(id).style.display = status
        } 
		if ( id == "expand11" ) {
			GetElement(id).style.display = status
        }
		if ( id == "expand12" ) {
			GetElement(id).style.display = status
    	} 
	}
	
	function GetElement( id ) {
		if ( document.all ) {
			return document.all[id];
		} else if ( document.getElementById ) {
			return document.getElementById(id);
		} else {
			return null;
		}
	}
	
	function CorrectDisplay() {
		if ( GetElement("expand1checked").checked ) {
			GetElement("expand1").style.display = ""
		}
		if ( GetElement("expand2checked").checked ) {
			GetElement("expand2").style.display = ""
		}
		if ( GetElement("expand3checked").checked ) {
			GetElement("expand3").style.display = ""
		}
		if ( GetElement("expand4checked").checked ) {
			GetElement("expand4").style.display = ""
		}
		if ( GetElement("expand5checked").checked ) {
			GetElement("expand5").style.display = ""
		}
		if ( GetElement("expand6checked").checked ) {
			GetElement("expand6").style.display = ""
		}
		if ( GetElement("expand7checked").checked ) {
			GetElement("expand7").style.display = ""
		}
		if ( GetElement("expand8checked").checked ) {
			GetElement("expand8").style.display = ""
		}
		if ( GetElement("expand9checked").checked ) {
			GetElement("expand9").style.display = ""
		}
		if ( GetElement("expand10checked").checked ) {
			GetElement("expand10").style.display = ""
		}
		if ( GetElement("expand11checked").checked ) {
			GetElement("expand11").style.display = ""
		}
		if ( GetElement("expand12checked").checked ) {
			GetElement("expand12").style.display = ""
		}
	}
	

