// JavaScript Document
formReturnValue = false;

function addBackLink()
{
	document.writeln("<a id='backlink' href='javascript:history.go(-1);'>&lt; Back</a>");
}

function validateContactForm(nameId, emailId)
{
	var n = document.getElementById(nameId);
	var e = document.getElementById(emailId);

	if(n.value == '')
	{
		window.alert('Please enter your name.');
		n.select();
		return false;
	}
	else if(e.value == '')
	{
		window.alert('Please enter a valid email address.');
		e.select();
		return false;
	}
	else
	{
		return true;
	}
}