document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="173"> ')
document.write('		<param name="movie" value="flash/top_nav_index.swf" />')
document.write('		<param name="quality" value="high" />')
document.write('		<param name="play" value="true" />')
document.write('		<param name="wmode" value="transparent">')
document.write('		<param name="wmode" value="opaque">')
document.write('		<embed wmode="transparent" src="flash/top_nav_index.swf" play="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="173"></embed>')
document.write('		</object> ')




function checkNEmail(){

if(document.subscribe.name.value.length == 0){
 alert("Please enter your name ");
document.subscribe.name.focus();
return false;
}
if (document.subscribe.email.value.length == 0)
	{	
		alert("Please enter your email address!");
		document.subscribe.email.focus();
		return false;
	}
	if (document.subscribe.email.value){
	// check to see if email field is valid
		var emailformat=/^.+@.+\..{2,3}$/;
		if (!(emailformat.test(document.subscribe.email.value))){
		// tell client that you need the email address
			alert("Please enter a valid email address")
			// send the cursor to the email field
			document.subscribe.email.focus()
			//return false to abort the submission
			return false
		}
	}

}
