function embedFlash(inMovie, inWidth, inHeight)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="' + inWidth + '" height="' + inHeight + '"><param name="wmode" value="transparent"><param name="movie" value="' + inMovie + '"><param name="quality" value="High"><embed src="' + inMovie + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="' + inWidth + '" height="' + inHeight + '" quality="High"></object>');
}

function validateContact(f)
{
	if (f.Name.value == '')
	{
		window.alert('Please enter your name');
		f.Name.focus();
		return false
	}
	
	if (f.Phone.value == '')
	{
		window.alert('Please enter your phone number');
		f.Phone.focus();
		return false
	}
	
	if (f.Email.value == '')
	{
		window.alert('Please enter your email address.');
		f.Email.focus();
		return false
	}
	
	return true;
}
