function chbgcolor(eleId){
	document.getElementById(eleId).style.backgroundColor = '#c7c3b5';
}

function chbgcolorb(eleId, odd){
	if (odd == 0) {
		document.getElementById(eleId).style.backgroundColor = '#ededed';
	}
	else {
		document.getElementById(eleId).style.backgroundColor = '#d2cebf';
	}
}

function showcarnew(car){
	url = "detail.php?car="+car;
	document.getElementById("auto").src=url;
	document.getElementById("auto").style.width='700px';
	document.getElementById("auto").style.top='59px';
	document.getElementById("auto").style.left='50%';
	document.getElementById("auto").style.visibility='visible';
	document.getElementById("auto").style.marginLeft='-170px';
}

function popwin(url,name,h,w){
	velikost = 'height='+h+',width='+w+',status=0,scrollbars=0,resizable=0';
	newwindow=window.open(url,name,velikost);
	if (window.focus) {newwindow.focus()}
	return false;
}

function closeif(){
	parent.document.getElementById("auto").style.visibility = 'hidden';
	url = "img/pixel.gif";
	parent.document.getElementById("auto").src=url;
	parent.document.getElementById("auto").style.top=-500;
}