function elvisCarListHoverHandler(id, hovered) {
	var table = document.getElementById(id);
	if(hovered) {
		table.className = 'carList activeCarList';
	} else {
		table.className = 'carList';
	}
}


function elvisOpenDetail(id) {
	window.location.href = '87.html?user_Elvis_ID=' + id;
}

function openMapCompanyID(company, id) {
	var wnd = window.open('http://www.autohaus-ostmann.de/maps?ID=' + id + '&company=' + company, 'Standort', 'width=820,height=660,left=100,top=200');
	wnd.resizeTo(820, 660);
	wnd.moveTo(0, 0);
	wnd.focus();
}
