// JavaScript Document
			
			function Rotate( ) {
			
				window.setInterval( "Flip( )", 4000 );
			}

			function Flip( ) {
			
				var iOffset;
				
				iOffset = Math.round( Math.random( ) * 46 );
				if ( !iOffset )
					iOffset = 1;
				document.images.rotatepic.src = "/Images/Rotate/Pic" + iOffset.toString( ) + ".jpg";
			}

			function CheckRequired( ) {
			
				var retVal = false;
				
				if ( document.SendEmail.txtName.value == "" ) {
					window.alert( "Your Name is Required" );
					return retVal;
				}
				if ( document.SendEmail.txtEmail.value == "" ) {
					window.alert( "Your Email is Required" );
					return retVal;
				}
				if ( document.SendEmail.txtEmail.value.indexOf( "." ) != document.SendEmail.txtEmail.value.length - 4  || document.SendEmail.txtEmail.value.indexOf( "@" )  == -1  || document.SendEmail.txtEmail.value.indexOf( "." ) < document.SendEmail.txtEmail.value.indexOf( "@" ) || document.SendEmail.txtEmail.value.indexOf( "." ) + 1 == document.SendEmail.txtEmail.value.indexOf( "@" ) || document.SendEmail.txtEmail.value.indexOf( "@" ) + 1 == document.SendEmail.txtEmail.value.indexOf( "." ) ) {
					window.alert( "Invalid Email Entered Try Again" );
					return retVal;
				}
				if ( document.SendEmail.txtComment.value == "" ) {
					window.alert( "The Comment is Required" );
					return retVal;
				}
				
				return true;
			}
