﻿// JScript File

  function tdBackHighlightOnmouseOver(id)
  {
    document.getElementById(id).style.backgroundColor = "#ff6600";
    document.getElementById(id).style.cursor="hand";
  }
      function tdBackHighlightOnmouseOut(id)
      {
       document.getElementById(id).style.backgroundColor = "#000000";
       
      }        
              function DoMouseOver(Item)// for Links in default Page (Over Color=black , Out Color=Silver)
           {
              
              Item.style.cursor = "hand";
              Item.style.color = "#000000";
           }

           function DoMouseOut(Item)
           {
             
            Item.style.color = "silver";
            
             } 
             
             function DoMouseOver2(Item)// for Links in default Page (Over Color=orange , Out Color=dark gray)
           {
              
              Item.style.cursor = "hand";
              Item.style.color = "#ff6600";
            
           }

           function DoMouseOut2(Item)
           {
             
            Item.style.color = "#4a4a4a";
            
             } 
             
             function loadAcademy() // open new window for HyperLink
           {
               var load = window.open('http://www.afpinstitute.com','','scrollbars=yes,menubar=yes,height=600,width=800,resizable=yes,toolbar=yes,location=yes,status=yes');
               }
           
                                                                                                       