﻿//-->
//</script>
//<script language="JavaScript" type="Text/Javascript"><!--
//  Hide script from older browsers

 var urlAddress = "http://www.technowells.com/";
 var pageName = "Technowells Computers";

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
  
  //not using you can remove this later
  function EnterKeyPress(button)
        {
            if (event.keyCode == 13)
            {
                event.returnValue = false;
                event.cancel = true;
                button.click();
            }
        }
       
    //not using you can remove later
    function CheckKey()
    {
        if (window.event.keyCode == 13) // checks whether the SHIFT key
        // is pressed
        {
            window.event.cancelBubble = true;
            window.event.returnValue = false;
            alert("Canceled");
        }
    }
  
 }
// --></script>