/**
 * @author Mark Coady
 * @date 1st Sept '08
 * 
 * Various utilities for the Water Portal web site.
 */

/* Form select navigation */
function surfto(form) {
	var myindex=form.select1.selectedIndex
	if (form.select1.options[myindex].value != "0") {
		location=form.select1.options[myindex].value;
	}
}

/* Alternate stylesheet for Mac PPC machines (old school, no longer really necessary) */
if ((navigator.platform=='MacPPC')) {
		document.write('<link rel="stylesheet" href="/water/css/wwap_mac.css" type="text/css">')
}