function taf(){       
	eval("window.open('http://rtmlwise.com/moranoracing/index.php?pageurl="+window.location+"','popup','menubar=no,scrollbars=yes,width=500,height=600')");  
}
function popup(src) {
  win = window.open(src,"","top=20,left=20,height=300,width=450,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes")
}



function validate_form ( )
{
	valid = true;

       if ( document.contact_form.subject.selectedIndex == 0 )
        {
                alert ( "Please select reason for contacting us." );
                valid = false;
        }
 if ( document.contact_form.Name.value == "" )
        {
                alert ( "Please fill in the 'Your Name' box." );
                valid = false;
        }
 if ( document.contact_form.from.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		if (document.contact_form.from.value != document.contact_form.Email2.value)
    {
        alert('Those emails don\'t match!');
        valid = false;
        }
		
		
		 if ( document.contact_form.Phone.value == "" )
        {
                alert ( "Please fill in the 'Phone' box." );
                valid = false;
        }
		 
				      
        return valid;
}

