function swapImg(img,st){
document.getElementById(img).src = "../../images/" + img + "_" + st + ".gif";
}
function swapImg2(img,st){
document.getElementById(img).src = "../../../images/" + img + "_" + st + ".gif";
}
function windowPrint(){
if (window.print){ window.print(); }
else { alert("Please press the print button in your browser."); }
}
function selectMFG(p){
var mfg = document.getElementById('m_mfg').value;
if (p) p = "vehicleinfo/";
else p = "";
if (mfg){location.href = p + mfg + ".html";}
}
function selectNew(p){
var mfg = document.getElementById('m_mfg').value;
if (p) p = "whatsnew/";
else p = "";
if (mfg){location.href = p + mfg + ".html";}
}