function enlarge(location,alt,id) {
	document.getElementById(""+id+"").src = '../control/uploads/images/thumbs/'+location+'';
	document.getElementById(""+id+"").alt = ''+alt+'';
	}
function bigImage (car) {
	var image = document.getElementById(''+car+'').src;
	
	window.open (image.replace("thumbs/", ""), 'child', 'height=600,width=650');
	}
