// JavaScript Document
function searchSite() {
	document.siteSearch.submit();	
}

function submitLogin() {
	document.dealerLogin.submit();
}

function showSubnav(which) {
	document.getElementById('subnav_'+which).style.display = 'block';
}

function hideSubnav(which) {
	document.getElementById('subnav_'+which).style.display = 'none';
}

function swapImage(from, to) {
	document.getElementById(from).src = to;
}

function deleteMe(script, id, name) {
	confirmation = confirm('Do you really wish to delete \''+name+'\'?');
	if(confirmation) {
		window.location = (script+'?id='+id);
	}
}