function straight(){

var thurl = window.location.toString().charAt(17);



var emailstuff = document.info.Your_Email.value;
var name= document.info.First_Name_Last_Name.value;
var company= document.info.Company_Name.value;
var phone= document.info.Phone_Number.value;
var thesubject= document.info.Subject.value;
var information = document.info.info.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(company.length==0){
document.getElementById('thecompany').style.color="red";}
else{document.getElementById('thecompany').style.color="black";}

if(phone.length==0){
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 ((emailstuff.indexOf('@') < 1)||(name.length==0)||(company.length==0)||(phone.length==0)||(thesubject.length==0)||(information.length==0))
{alert('Please properly complete all fields in red.'); return false;}


}

