// JavaScript Document

// EMAIL FUNCTION

function JSMailTo(email_username,email_domain){
			var email_address=email_username+'@'+email_domain;
			document.write('<a href="mailto:'+email_address+'">'+email_address+'</a>');
}

// OPEN POPUP

function openSize(){
window.open("car_size.html", "carSize", "height=400,width=610,scrollbars=no,toolbar=no,status=no,menubar=no,location=center")
}
