// JavaScript Document for the sell your property page

//function to show the image form
function showImageForm(){
	document.getElementById('clickToAdd').style.display = "none";
	document.getElementById('imageupload').style.display = "block";
	document.getElementById('img1').style.display = "block";
}


//the following function adds new file upload fields for photos.
//the limit is 5 photos
function newFileField(counter){
	if(counter<6){
		document.getElementById('img'+counter).style.display = "block";
	}else{
		document.getElementById('imageLimit').style.display = "block";
		document.getElementById('additionalImage').style.display = "none";
	}

}