function hoverover(obj)
{
	var clr = '#F0F2F8';
	obj.style.backgroundColor = clr;	
}
function hoverout(obj)
{
	var clr = '';
	obj.style.backgroundColor = clr;	
}
function details(href)
{
	if(href == "") return true;
	window.location.href = href;
}

function setimg(img)
{
	var o_detail = document.getElementById('detailimg');
	if(!o_detail) return false;
	o_detail.src = img;
}
function showimg(img,width,height)
{

	s_href = "/php/popup.php?img="+img;
	s_properties = "toolbar=no,width=" + width + ",height="+ height + ",location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no";
	
  o_window = window.open(s_href, "new", s_properties);
}

function checksend(pricefield)
{
	var price = 0;
	var o_obj = document.getElementById(pricefield);
	if(o_obj) price = o_obj.value;
	if(price < 1) return false;
	
	s_message = 'Weet u zeker dat u ';
	s_message += '€ ' + price;
	s_message += ' op deze auto wilt bieden?';
	
	return confirm(s_message);
}
