// JavaScript Document
function prepDropDowns(id) {
	if(document.getElementById(id)) {
		var arrElms = document.getElementById(id).getElementsByTagName("SELECT");
		for (var i=0; i<arrElms.length; i++) {
			arrElms[i].onchange=function(){
				if (this.options[this.selectedIndex].value !== "noaction"){
					window.location = this.options[this.selectedIndex].value;
				}
			}
		}
	}
}
