//swap CSS style
function swapImg(obj, new_style) {
    obj.className = new_style;
}

function addy(mail1, mail2, mail3) {
	var seg1=(mail1)
	var seg2=('@')
	var seg3=(mail2)
	var seg4=('.')
	var seg5=(mail3)
	var seg7=('mai')
	var seg8=('lto')
	var seg9=(':')
	var seg10=('<a href="')
	var seg11=('">' +seg1+seg2+seg3+seg4+seg5+ '</a>')
	document.write(seg10+seg7+seg8+seg9+seg1+seg2+seg3+seg4+seg5+seg11)
}

function GoURL(selectname, formname)
	{
	if (document.getElementById(selectname).selectedIndex == 0)
  		{
    	alert("The first \"Please Select\" option is not a valid selection.  Please choose one of the other options.");
    	document.getElementById(formname).focus();
    	return (false);
  		}
 	else
		{
		document.getElementById(formname).submit();
//		var d = s.options[s.selectedIndex].value;
//		window.top.location.href = d;
//		s.selectedIndex=0;
		}
	}
