if (document.images) //preload images
{
    
}    

function chgImg(name, image)
{
       
       document[name].src = eval(image+".src");
}
function sayhello()
{  document.write("hello");
}
function popup(urlname)
{
      window.open(urlname);
    
}

function openNewHtml(urlname)
{
    window.location=urlname;
}
function chginTxtColor(idName)
{
   document.getElementById(idName).style.color = '#DDE2E8';
}   
function chgoutTxtColor(idName)
{  document.getElementById(idName).style.color = '#3a4652';
}

function chgText(elemID, name)
{  

      var htmlstr = "";
     
      
      if( name == "senioritem_img")
      {
      
      htmlstr =  "<p><h3 align='center'>SENIOR  CHECKUPS</h3>" +
         "We provide these Senior Care services along with our " +
         "Presonal Services.  We will be the connection between you and your " +
         "loved one.</br></br></p>" +
         "<ul><li>Daily or Weekly visits<ul>" +
               "<li>email a picture  </li>" +
             "<li>spend some time with them and assess needs</li>" +
           "<li>medicine reminders</li>" +
        "</ul></li><br />" +
       "<li>arrange transportation for appointments</l1>" +
       "<li>accompany them to their doctor and obtain written doctor instructions</li>" +
      "</ul>";
       
       }   
       else if(name == "repairitem_img"){
         
         htmlstr = "<p><h4 align='center'>Maintenance & Repair Services</h4>" +
            "<p align='center'>If you can't be there we can</p>" +
            "We provide management services for your home maintenance and repairs." +
            "We can provide you with bids from your vendors " +
            "or ours.  Our vendors are chosen from our own experience and " +
            "from recommendations that we have received from reliable sources.</br>" +
            "<h4 align = 'center'>Relocation Services</h4>" +
            "We have many years in the relocation business.  We can arrange as much of " +
            "your relocation needs as you want.";
         
       
       }
       else if(name == "personalitem_img") {
       
         htmlstr = "<p><h3 align='center'>Personal Services</h3>" +
         "Our personal services are many and can be almost anything you'd like." +
         "</br></p>" +
         "<ul><li>Errands - dry cleaning, postal services, prescription pickups, " +
         "and much more</li>" +
         "<li>Grocery and Personal Shopping - you provide the list and we'll do the rest.  " +
         "Check out our handy shopping list!(coming soon)</li>" +
         "<li>Home Opening - when you're away - we'll stock the fridge, turn on the air, " +
         "flush the water system if needed.</li>" +
         "<li>Home Closing - when you leave - arrange for cleaning, turn off all non-essential " +
         "appliances, lower your hot water tank - Put your house in sleep mode.</li>" +
         "<li>Referral Services</li></ul></br>" +
         "<p>We also provide Home Office Services.  We can provide you with </p>" +
         "<ul><li>Clerical services</li>" +
         "<li>Computer assistance for various software and general use</li>" +
         "<li>Notary Services (coming soon)</li>" +
         "<li>Courier Services</li></ul>";
         

       }
       else if(name == "hurricaneitem_img") {
         htmlstr = "<p><h3 align='center'>Hurricane and Storm Services</h3>" +
            "Hurricane Seaon - get on our email list and we will send " +
            "you weather updates for approaching storms." +
            "</br></br>Here is some of what we can do.</p>" +
            "<ul><li>Put up and take down your hurricane products.</li>" +
            "<li>Place patio furniture inside.<li>" +
            "<li>Inspect your property for any visible storm damage and contact you.</li>" +
            "<li>Take pictures after the storm if accessible.</li>" +
            "</ul>";
            
       }
       else if( name == "homewatchID") {
        
         htmlstr = "<p></br><h3 align='center'>Home Watching Services</h3>" +
            "Our services are provided on a weekly, biweekly, or monthly basis.  " +
            "We will visually inspect the inside and outside of your property and " +
            "before leaving we will take a picture for emailing.</br></br>" +
            "Our basic inspection includes the following.</p>" +
            
            "<ul><li>Check that appliances and airconditioner are running</li>" +
            "<li>Check and change your air conditioning filters if requested.</li>"+
            "<li>Check for any mail and if you like we will forward it.</li>" +
            "<li>Email pictures of your property to you.</li>" +
            "<li>Verify that ongoing services are being performed</li>" +
            "<li>Water your indoor plants</li>" +
            "<li>Collect any distributed newspapers and flyers from the driveway</li>" +
            "<li>Flush your toilets so water is not stale</li>" +
            
            "<li>Visually inspect the inside and/or outside of your property for obvious signs of" +
            "<ul><li>leaks, pests, rodents</li>" +
            "<li>damage to pool, lanai, windows, doors, roof</li>" +
            "<li>damage to landscape, trees, lawn</li></ul></li></ul>";
       }
       else {
         htmlstr = "<p>Error 101 - Email Gulf Coast, LLC with the error #." +
           "Thank you!</p>";
       }
     
     
     
     document.getElementById(elemID).innerHTML = htmlstr;
         
}  


