if(typeof sIFR == "function"){
sIFR.replaceElement(named({sSelector:"#content h1",  sFlashSrc:"exoticIsland.swf", sColor:"#783388", sWmode:"transparent"}));
sIFR.replaceElement(named({sSelector:"#content h2",  sFlashSrc:"exoticIsland.swf", sColor:"#007886", sWmode:"transparent"}));
sIFR.replaceElement(named({sSelector:"#content h6",  sFlashSrc:"exoticIsland.swf", sColor:"#783388", sWmode:"transparent"}));
};

function runSiteScripts() {



// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}


}

function validateForm(appointment)
{

if(""==document.forms.appointment.Email.value)
{
alert("Please enter your email address.");
return false;
}

if(""==document.forms.appointment.From.value)
{
alert("Please enter your first name.");
return false;
}

if(""==document.forms.appointment.Lname.value)
{
alert("Please enter your last name.");
return false;
}

if(""==document.forms.appointment.Phone.value)
{
alert("Please enter your phone number.");
return false;
}

}