function updateImage(id, imageHeight, imageWidth, type) {

	imageHeight += 200;
	imageWidth += 150;

	if (imageWidth < 350) imageWidth=350;
	
	var winL = Math.round((screen.width) / 2) - (imageWidth/2);
	var winT = Math.round((screen.height) / 2) - (imageHeight/2);


	window.open ('updateImage.aspx?id='+id+'&type='+type,'ImageUpdate','height='+imageHeight+',width='+imageWidth+',top='+winT+',left='+winL+',resizable=yes,toolbar=no,scrollbars=yes');
}

function openDetails(id) {

	var pageHeight = 610;
	var pageWidth = 660;
	
	var winL = Math.round((screen.width) / 2) - (pageWidth/2);
	var winT = Math.round((screen.height) / 2) - (pageHeight/2);


	window.open ('details.aspx?carid='+id,'CarDetails','height='+pageHeight+',width='+pageWidth+',top='+winT+',left='+winL+',resizable=yes,toolbar=no,scrollbars=yes');
}
