<!-- 

function rollon(num) {
	// Determine Browser Width 
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
	} else {
	    if( document.documentElement &&
			( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
			//IE 6+ in 'standards compliant mode'
			myWidth = document.documentElement.clientWidth;
    	} else {
			if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
				//IE 4 compatible
	        	myWidth = document.body.clientWidth;
			}
		}
	}
	var mleft = (myWidth / 2) - 90;
	
	// Display DIV 
	if (document.layers) {   // If Netscape
		eval("document.layers.Sec" + num + ".left=" + mleft);  // Set Left
		eval("document.layers.Sec" + num + ".visibility='visible'");  // Show current
	}
	if (document.getElementById&&!document.all) {   // If Netscape6
		eval("document.getElementById('Sec" + num + "').style.left=" + mleft);  // Set Left
		eval("document.getElementById('Sec" + num + "').style.visibility='visible'");  // Show current
	}
	if (document.all) {   // If Explorer
		eval("Sec" + num + ".style.left=" + mleft);  // Set Left
		eval("Sec" + num + ".style.visibility='visible'");  // Show current
	}
}

function rolloff(num) {
	if (document.layers) {   // If Netscape
		eval("document.layers.Sec" + num + ".visibility='hidden'");  // Hide current
	}
	if (document.getElementById&&!document.all) {   // If Netscape6
		eval("document.getElementById('Sec" + num + "').style.visibility='hidden'");
	}
	if (document.all) {   // If Explorer
		eval("Sec" + num + ".style.visibility='hidden'");  // Hide current
	}
}

//-->