<!-- 
	function anotherWindow(form) {
if (form.location.selectedIndex> 0 ){
	var URL=form.location.options[form.location.selectedIndex].value;
	document.location = URL;
	//newWin = window.open(URL, "anotherWindow", "toolbar=1,location=1,menubar=1,scrollbars=1,status=1,resizable=1,position=absolute,left=5,top=5,height=575,width=785");
	/*
	if(window.focus){
	newWin.focus();
		}
	*/
	}
}

function multiMenu() {
	if (document.form2.drop1[0].selected)
	{
		document.form2.drop2.options[0].value = "Now it's green";		
		document.form2.drop2.options[1].value = "Now it's blue";	
		document.form2.drop2.options[2].value = "Now it's red";
	}
	if (document.form2.drop1[1].selected)
	{
		document.form2.drop2.options[0].value = "Now it's dogs";		
		document.form2.drop2.options[1].value = "Now it's cats";	
		document.form2.drop2.options[2].value = "Now it's mice";
	}
}



// -->