function straight(){



var sel = document.getElementById("state");
var pos = sel.selectedIndex;



var emailstuff = document.info.youremail.value;
var name= document.info.fullname.value;
var phone= document.info.phonenumber.value;
var thesubject= document.info.subject.value;
var information = document.info.additionalinformation.value;
var address = document.info.address.value;
var city = document.info.city.value;
var state = sel.options[pos].text;
var zipcode = document.info.zipcode.value;
var fax = document.info.fax.value;



if(emailstuff.length<=1){
document.getElementById('theemail').style.color="red";}
else{document.getElementById('theemail').style.color="black";}

if(emailstuff.indexOf('@')<1){
document.getElementById('theemail').style.color="red";}
else{document.getElementById('theemail').style.color="black";}

if(name.length==0){
document.getElementById('thename').style.color="red";}
else{document.getElementById('thename').style.color="black";}

if(phone.length<10){
document.getElementById('thephone').style.color="red";}
else{document.getElementById('thephone').style.color="black";}

if(thesubject.length==0){
document.getElementById('thesubject').style.color="red";}
else{document.getElementById('thesubject').style.color="black";}

if(information.length==0){
document.getElementById('message').style.color="red";}
else{document.getElementById('message').style.color="black";}

if(address.length==0){
document.getElementById('theaddress').style.color="red";}
else{document.getElementById('theaddress').style.color="black";}

if(city.length==0){
document.getElementById('thecity').style.color="red";}
else{document.getElementById('thecity').style.color="black";}

if(state == '--Please Select--'){
document.getElementById('thestate').style.color="red";}
else{document.getElementById('thestate').style.color="black";}

if(zipcode.length<5){
document.getElementById('thezipcode').style.color="red";}
else{document.getElementById('thezipcode').style.color="black";}



if ((emailstuff.indexOf('@') < 1)||(name.length==0)||(phone.length<10)||(thesubject.length==0)||(information.length==0)||(city.length==0)||(state == '--Please Select--')||(zipcode.length<5)||(address.length==0))
{alert('Please properly complete all fields in red.'); return false;}


}

