// JavaScript Document<!--

function cleartext() {
	document.display1.text1.value = "";
	document.display2.text2.value = "";
	document.display3.text3.value = "";
	document.titlefrm.titlefld.value = "";
	/*default_vehicle();*/
	
}
function cadillac_stretch_limos() {
	document.titlefrm.titlefld.value = "Cadillac Escalade Limousine";
	// almost exactly the same description as Hummer Limos
	document.display1.text1.value = "Seats up to 19\n\nFireplace\n\nHardwood Floor\n\nLeather Seating\n\nSolid Walnut Bar";
	document.display2.text2.value = "1500 Watt Sound System\n\nTwo 12-inch Subwoofers\n\nCD Player\n\n7 Flatscreen TVs\n\nPlaystation 2";
	document.display3.text3.value = "Neon Lighting\n\nLaser Light Show\n\nStrobe Lights\n\nFiber Optic Mirror Ceiling\n\nTwo Bubble Tubes";
}
function activity_coach() {
	document.titlefrm.titlefld.value = "Activity Coach";
	tmp = "Seats up to 48\n\nOverhead Luggage\n\nRest Room on Board"
	document.display1.text1.value = tmp;
	document.display2.text2.value = "DVD Player\n\n7 Video Players";
	document.display3.text3.value = "Fully Air Conditioned\n\nIndividually Controlled Reading Lamps";

}
function hummer_limos() {
	document.titlefrm.titlefld.value = "H2 Hummer Limos";
	document.display1.text1.value = "Seats up to 19\n\nFireplace\n\nHardwood Floor\n\nLeather Seating\n\nSolid Walnut Bar\n\nGas Engine";
	document.display2.text2.value = "1500 Watt Sound System\n\nTwo 12-inch Subwoofers\n\nSystem-CD Player\n\n6 Flatscreen TVs\n\nPlaystation 2";
	document.display3.text3.value = "Neon Lighting\n\nLaser Light Show\n\nStrobe Lights\n\nFiber Optic Mirror Ceiling\n\nTwo Bubble Tubes";
}
function ford_coach() {
	/* MINI COACH */
	document.titlefrm.titlefld.value = "Mini Coach";
	document.display1.text1.value = "Seats up to 24";
	document.display2.text2.value = "Hideaway Wheelchair Lift";
	document.display3.text3.value = "Air Conditioning";
}
function limo_coach() {
	document.titlefrm.titlefld.value = "Limo Coach";
	document.display1.text1.value = "Seats up to 41\n\nHardwood Floor\n\nLeather Seating\n\nStobe Lights\n\nCD/DVD Player";
	document.display2.text2.value = "42-inch Plasma Flat TV\n\nNeon Lighting\n\nSolid Walnut Bar\n\nNight Club Quality Sound";
	document.display3.text3.value = "Hostess available\n\nLaser Light Show\n\nFiber Optic Mirror Ceiling\n\n21 inch Plasma TV";
}
function municipal_bus_line() {
	document.titlefrm.titlefld.value = "Buses";
	document.display1.text1.value = "Seats up to 83 Children\nor 54 Adults";
	document.display2.text2.value = "Diesel Engine";
	document.display3.text3.value = "Automatic Transmission";
}
function wedding_limo_lincoln() {
	document.titlefrm.titlefld.value = "Lincoln Town Car Stretch Limousine";
	document.display1.text1.value = "Seats up to 10\n\nBridal Door\n\nLeather Seating";
	document.display2.text2.value = "CD Player\n\n2 TVs\n\nPlaystation 2";
	document.display3.text3.value = "Fiber Optic Mirror Ceiling";
}
function f650_mammoth() {
	// this is the f650_mammoth - obsoleted 11/01/07
	// re-instated 2/15/08 
	document.titlefrm.titlefld.value = "F650 Mammoth";
	tmp = "Seats up to 28\n\nElectric " + '"' + "Extra Step" + '"' + " to help you get into the Mammoth"
	document.display1.text1.value = tmp;
	document.display2.text2.value = "1500 Watt Sound System\n\nDVD Players\n\n10 TVs\n\nPlaystation 2";
	document.display3.text3.value = "Laser Light Show\n\nFiber Optic Mirror Ceiling";

}

//-->