function addInterest(type,id,details){
	if(document.getElementById("addbutval"+id).value == 0){
		var amount = document.getElementById("nintdisp").innerHTML;
		document.getElementById("nintdisp").innerHTML = parseFloat(amount)+1;
		document.getElementById("addbut"+id).src = "http://www.pentagon-group.co.uk/images/new_results_but_added.gif";
		document.getElementById("addbutval"+id).value = 1;
		document.getElementById("addbut"+id).style.cursor = "default";
		frames["interestlistframe"].location.href = "/vehicle_interest_add.php?type="+type+"&id="+id;
	}
}

function removeInterest(type,id){
	temp = window.confirm("Are you sure you want to remove this vehicle from your Interest List?");
	if (temp == true){
		document.getElementById("introw_"+type+"_"+id).style.display = "none";
        var amount = document.getElementById("nintdisp").innerHTML;
		document.getElementById("nintdisp").innerHTML = parseFloat(amount)-1;
		if(document.getElementById("nintdisp").innerHTML == 0){
			document.getElementById("inticons").style.display = "none";
		}
		frames["interestlistframe"].location.href = "/vehicle_interest_add.php?type="+type+"&id="+id+"&remove=1";
		window.opener.location.reload(true);
	}
}

function clearInterest(){
    temp = window.confirm("Are you sure you want to clear your whole Interest List?");
	if (temp == true){
		window.location = "/vehicle_interest_add.php?clear=1";
	}
}

function openInterest(url){
	window.opener.location.href=url;
	window.opener.focus();
}