<!-- 

function wheelon(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;
			}
		}
	}
	if (num==1) var xdev=-190;
	if (num==2) var xdev=195;
	if (num==3) var xdev=-240;
	var mleft = (myWidth / 2) + xdev;
	
	// Display DIV 
	if (document.layers) {   // If Netscape
		eval("document.layers.Wedge" + num + "Cont.left=" + mleft);  // Set Left
		eval("document.layers.Wedge" + num + "Cont.visibility='visible'");  // Show current
	}
	if (document.getElementById&&!document.all) {   // If Netscape6
		eval("document.getElementById('Wedge" + num + "Cont').style.left=" + mleft);  // Set Left
		eval("document.getElementById('Wedge" + num + "Cont').style.visibility='visible'");  // Show current
	}
	if (document.all) {   // If Explorer
		eval("Wedge" + num + "Cont.style.left=" + mleft);  // Set Left
		eval("Wedge" + num + "Cont.style.visibility='visible'");  // Show current
	}
}

function wheeloff(num) {
	if (document.layers) {   // If Netscape
		eval("document.layers.Wedge" + num + "Cont.visibility='hidden'");  // Hide current
	}
	if (document.getElementById&&!document.all) {   // If Netscape6
		eval("document.getElementById('Wedge" + num + "Cont').style.visibility='hidden'");
	}
	if (document.all) {   // If Explorer
		eval("Wedge" + num + "Cont.style.visibility='hidden'");  // Hide current
	}
}

//-->