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="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 to continue.');
		f.Name.focus();
		return false;
	}
	
	if (f.Address.value == '' && f.Phone.value == '')
	{
		window.alert('Please enter a contact Phone Number or Email Address to continue.');
		f.Phone.focus();
		return false;
	}
	
	return true;
}
function validateQuery(f)
{
	if (f.Name.value == '')
	{
		window.alert('Please enter your name to continue.');
		f.Name.focus();
		return false;
	}
	
	if (f.Address.value == '' && f.Phone.value == '')
	{
		window.alert('Please enter a contact Phone Number or Email Address to continue.');
		f.Phone.focus();
		return false;
	}

	if (f.Query.value == '')
	{
		window.alert('Please enter a query.');
		f.Query.focus();
		return false;
	}
	
	return true;
}

function poptastic(url,w,h)
{
  var newwindow;
  newwindow=window.open(url,'name','height='+h+',width='+w);
  if (window.focus) {newwindow.focus()}
}

