function swflove()
{


document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0" id="intro" width="293" height="288">\n');
document.write('<param name="movie" value="intro.swf" />\n');
document.write('<param name="bgcolor" value="#000000" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="allowscriptaccess" value="samedomain" />\n');
document.write('<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="293" height="288" name="intro" src="intro.swf" bgcolor="#000000" quality="high" wmode="transparent" swLiveConnect="true" allowScriptAccess="samedomain"></embed>\n');
document.write('</object>');

} 




function clearform1(which1){
if (which1.value=="Questions / Comments")
which1.value=''
}

function clearform2(which2){
if (which2.value=="Required")
which2.value=''
}

function clearform3(which3){
if (which3.value=="Required")
which3.value=''
}

function CheckForm( cForm )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( cForm.customer_name.value == 'Required' | cForm.customer_name.value == '' ){
		bMissingFields = true;
		strFields += "     Your Name\n";
	}

	if( cForm.email.value == 'Required' | cForm.email.value == '' ){
		bMissingFields = true;
		strFields += "     Email Address\n";
	}


	if( bMissingFields ) {
		alert( "You must provide the following field(s) before continuing:\n\n" + strFields );
		return false;
	}
	
	return true;
}
