
function checkData (){

if (document.f.OCRef.value.length ==0){
document.f.OCRef.focus()
alert("Please enter an OCRef# for this villa.")
return false}

if (document.f.Property.value.length ==0){
document.f.Property.focus()
alert("Please enter a Property Name.")
return false}

if (document.f.cid.value.length ==0){
document.f.cid.focus()
alert("Please enter a Location for this villa.")
return false}

if (confirm("You are about to submit this villa.\nPlease make sure to double check all of the information, including spelling."))
return true;
else
return false;

}


