function changePage(formnum,menunum) 
{
	i=document.forms[formnum].elements[menunum].selectedIndex;
	j=document.forms[formnum].elements[menunum].options[i].value;
	if ((i == 0) || (j == "*")) return; // if first option or sep do nothing
	parent.location.href = j;
}
