var openhouse = false;
var opencar = false;

function openHouseImages(id) {
	if (openhouse) {
		var r=confirm("Any changes made to the listing will be lost - press 'edit listing' button first if you wish to save first.");
		
		if (r) {
			top.location.href='/myaccount/listings/house/manageimages/'+id;			
		}
	} else {
		top.location.href='/myaccount/listings/house/manageimages/'+id;
	}	
}

function openCarImages(id) {
	if (opencar) {
		var r=confirm("Any changes made to the listing will be lost - press 'edit listing' button first if you wish to save first.");
		
		if (r) {
			top.location.href='/myaccount/listings/car/manageimages/'+id;			
		}
	} else {
		top.location.href='/myaccount/listings/car/manageimages/'+id;
	}	
}
