function right(e) {
//disables right mouse and stops unauthorized copy of webcontent
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Sorry, cannot copy");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;


 function checkdropaline(f) {
//For checking of input form completed. Checks name, mail, arrivdates dept dates
	
   if(document.dropaline.name.value == ""){alert("Enter your name please.");return false;}   	
   if(document.dropaline.email.value == ""){alert("Enter your E-mail address please.");return false;}
   	if(document.dropaline.phone.value == ""){alert("Enter your contact phone number please.");return false;}
   
}


function DHTime_Orlando_villas()
{                                                                                        
//For date and time setting on displayed webpage
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym='0'+daym
var dayarray=new Array('Sun','Mon','Tues','Wed','Thur','Fri','Sat')
var montharray=new Array('January','February','March','April','May','June','July','August','September','October','November','December')
document.write(dayarray[day]+', '+montharray[month]+' '+daym+', '+year)

}





