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;
}

function popWindow(url,w,h)
{
	//window.open(url,'pWin','width=' + w + ',height=' + h + ',scrollbars,resizable,status');
	var poppedWindow = window.open(url,'pWin','width=' + w + ',height=' + h + ',scrollbars,resizable,status');
	poppedWindow.moveTo(screen.width/2-w/2, screen.height/2-h/2);
	poppedWindow.focus();
}
