function menu_top()
{
	document.write('<font class="menu">');
	document.write('<a href="welcome.html">Welcome</a>');
	document.write(' &bull; ');
	document.write('<a href="involved.html">Get Involved</a>');
	document.write(' &bull; ');
	document.write('<a href="aab/index.html" target="_blank">Advisory Board</a>');
	document.write(' &bull; ');
	document.write('<a href="http://uwp-disted.blogspot.com/" target="_blank">Distance Education Blog</a>');
	document.write(' &bull; ');
	document.write('<a href="http://www.uwplatt.edu/alumni/calendar.html" target="_blank">Calendar</a>');
	document.write('</font>');
}

function menu_bottom()
{
	document.write('<script src="http://www.uwplatt.edu/disted/scripts/dynamic.js" type="text/javascript" language="javascript"></script>');
	document.write('<font class="menu">');
	document.write('<a href="touch.html">Stay in Touch</a>');
	document.write(' &bull; ');
	document.write('<a href="giftshop.html">Gift Shop</a>');
	document.write(' &bull; ');
	document.write('<a href="grad.html">Graduation Activities</a>');
	document.write(' &bull; ');
	document.write('<a href="#" onClick=window.open("http://www.uwplatt.edu/disted/leader.htm","newOne","width=200,height=220,top=120,left=50");>25th Anniversary</a>');
	document.write(' &bull; ');
	document.write('<a href="alumni.html">UWP Alumni Association</a> <br /><a href="../index.html">Distance Education Home</a>');
	document.write('</font>');
}

function validate()
{
	var x = document.info;
	if( x.fname.value.length == 0 )
	{
		x.fname.focus();
		alert("You are required to enter in your First Name.");
		
		return false;
	}
	if( x.lname.value.length == 0 )
	{
		x.lname.focus();
		alert("You are required to enter in your Last Name.");
		
		return false;
	}

/*	else if( x.email.value.indexOf("@") == -1 )
	{
		x.email.focus();
		alert("You are required to enter a valid email address.");
		return false;
	}
	else if( x.gradyear.value.length == 0 )
	{
		x.gradyear.
		alert("You are required to enter in your Graduation Year.");
		return false;
	}
	else if( x.streetaddress.value.length == 0 )
	{
		alert("You are required to enter in your Street Address.");
		return false;
	}
	else if( x.city.value.length == 0 )
	{
		alert("You are required to enter in your City.");
		return false;
	}
	else if( x.state.value.length == 0 )
	{
		alert("You are required to enter in your State.");
		return false;
	}
	else if( x.zipcode.value.length == 0 )
	{
		alert("You are required to enter in your Zip Code.");
		return false;
	}
	else if( x.phone.value.length == 0 )
	{
		alert("You are required to enter in your Phone number.");
		return false;
	}
	else if( x.major.value.length == 0 )
	{
		alert("You are required to enter in your Major.");
		return false;
	}
*/
	
	return true;
}
