function VehiclePhoto() {
	this.currentVehiclePhoto = 0;
	this.rootPath = '';
	this.photoList = new Array();
	
	this.ChangePhoto = ChangePhoto;
	this.SetCurrentVehiclePhotoId = SetCurrentVehiclePhotoId;
	this.VP_SetRootPath = VP_SetRootPath;
	this.VP_AddVehiclePhoto = VP_AddVehiclePhoto;
	this.OpenPhotoPopup = OpenPhotoPopup;
}

function ChangePhoto(vehiclephotoid) {
	document.getElementById("VehiclePhoto"+this.gadgetId).src = this.photoList[vehiclephotoid];
	this.SetCurrentVehiclePhotoId(vehiclephotoid);
}

function SetCurrentVehiclePhotoId(vehiclephotoid) {
	this.currentVehiclePhoto = vehiclephotoid;
}

function VP_SetRootPath(rootPath) {
	this.rootPath = rootPath;
}

function VP_AddVehiclePhoto(vehiclephotoid, imageSrc) {
	this.photoList[vehiclephotoid] = imageSrc;
}

function OpenPhotoPopup(vehiclephotoid) {
	if (this.currentVehiclePhoto > 0) {
		var url = this.rootPath+'vehiclephoto.php';
		if (typeof(vehiclephotoid) == 'undefined') {
			url += '?vehiclephotoid='+this.currentVehiclePhoto;
		} else {
			url += '?vehiclephotoid='+vehiclephotoid;
		}
		return window.open (url, "window1","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,height=573,width=800");
	}
}

