// JavaScript Document

function printSite() {
	if(location.href.indexOf("?") == -1) {
		var url = location.href+"?print=1";
	} else {
		var url = location.href+"&print=1";
	}
	window.open(url, '_blank', 'width=650,height=600,top=50,left=100,menubar=no,location=no,toolbar=no,status=no,scrollbars=yes,resizable=yes');
}

function mkActive(marke) {
	var el = document.getElementById("markenbild");
	el.src = "/images/logo-"+marke;
	if(marke=="volvo"||marke=="peugeot"){
	el.src = el.src+".gif";
	}else{
	el.src = el.src+".jpg";
	}

}

function mkInactive(marke) {
	var el = document.getElementById("markenbild");
	el.src = "/images/spacer.gif";
}

function boxOver(box) {
	box.className = 'b_active';
}

function boxOut(box) {
	box.className = 'b_inactive';
}

//var mSelected = null;
//var mHovered = null;
/*
function mSelect(x) {
	if(mSelected != null) {
		document.getElementById("table_umenu"+mSelected).style.display = "none";
	}
	document.getElementById("table_umenu"+x).style.display = "";
	mSelected = x;
}
*/
function mOver(x) {
	document.getElementById("umenu"+x).style.display = "block";
}

function mOut(x) {
	document.getElementById("umenu"+x).style.display = "none";
}
