/* BayMotors Global Javascript file */

function over(id){
element = document.getElementById(id);
element.style.borderRight = "10px solid #949494";
}

function out(id){
element = document.getElementById(id);
element.style.borderRight = "none";
}

function load(id){
element = document.getElementById(id);
element.style.background = "#99FFCC";
}

function lastUpdate(){
document.write("<address>Last updated 11th August 05<br />by <a href=\"mailto:webmaster@baymotors.net\">Webmaster</a><br /><br /><a href=\"disclaimer.html\">Disclaimer</a></address>");
}

function openWin(URL, ID){
aWindow = window.open(URL, ID, "toolbar=no, width=455, height=400");
aWindow.focus();
}

function submitForm(URL, ID, WINID){
openWin(URL, WINID);
element = document.getElementById(ID);
element.submit();
}