/*
* LOG AREA:
* --------
* Date		Comments
* ----------	--------
* 2003-08-14	Created file
* 2003-08-14	JS code for Shout Out form
*/

function checkShoutOut()
{
	var tmp = document.formShoutOut;

	if (tmp.myname.value=="" || tmp.myname.value==" ")
	{
		alert('your name, please');
		tmp.myname.focus() == true;
		return false;
	}
	if (tmp.myemail.value=="" || tmp.myemail.value==" ")
	{
		alert('your email address, please');
		tmp.myemail.focus();
		return false;
	}
	if (tmp.mycontent.value=="" || tmp.mycontent.value==" ")
	{
		alert('you wanted to say something?');
		tmp.mycontent.focus();
		return false;
	}
	return true;
}
