function killspam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

<!-- Image Preload -->
Rollimage = new Array()
Rollimage[0]= new Image(206,50)
Rollimage[0].src = "images/sidenav_blue_over.gif"
Rollimage[1] = new Image(206,50)
Rollimage[1].src = "images/sidenav_brown_over.gif"
Rollimage[2]= new Image(206,50)
Rollimage[2].src = "images/sidenav_green_over.gif"
Rollimage[3]= new Image(146,17)
Rollimage[3].src = "images/mainnav_perf_over.gif"
Rollimage[4]= new Image(206,50)
Rollimage[4].src = "images/mainav_mpg_over.gif"
Rollimage[5]= new Image(206,50)
Rollimage[5].src = "images/mainnav_enviro_over.gif"
Rollimage[6]= new Image(206,50)
Rollimage[6].src = "images/mainnav_resources_over.gif"

<!-- Mileage Calculator -->
function d(){
  var a = document.mileageCalculator.miles.value;
  var b = document.mileageCalculator.gas.value;
  var c = document.mileageCalculator.days.value;
  var cost = document.mileageCalculator.cost.value;
  mpg=a/b;
  gpd=b/c;
  mpg= Math.round(mpg*10)/10;
  gpy=gpd*365;
  co=gpy*19.36;
  cpy=gpy*cost;
  meco=cpy*0.13;
  gpd= Math.round(gpd*1000)/1000;
  gpy= Math.round(gpy*10)/10;
  cpy= Math.round(cpy*100)/100;
  meco= Math.round(meco*100)/100;
  co= Math.round(co);
  document.mileageCalculator.results.value="Your vehicle is getting "+mpg+" miles per gallon. On the average you use "+gpd+" gallons per day. At that rate of consumption you will burn "+gpy+" gallons per year at a cost of $"+cpy+" per year. Using Ultimate ME2 may help you save $"+meco+" , or more, per year!";
}