
<!--  

function changeMailURL(subject)
{

command = "mailto:";
user = "reservations"; 
site = "5starvacationrentals.com?subject="; 


document.getElementById('mailURL').href = command + user + '@' + site + subject;

}


function changeMailURL6(subject)
{

command = "mailto:";
user = "reservations"; 
site = "5starvacationrentals.com?subject="; 

document.getElementById('mailURL1').href = command + user + '@' + site + subject;
document.getElementById('mailURL2').href = command + user + '@' + site + subject;
document.getElementById('mailURL3').href = command + user + '@' + site + subject;
document.getElementById('mailURL4').href = command + user + '@' + site + subject;
document.getElementById('mailURL5').href = command + user + '@' + site + subject;
document.getElementById('mailURL6').href = command + user + '@' + site + subject;

}

--> 
