﻿ function checkDefaults()
   {
   //Code to make sure all the template settings have been setup properly
  
   if (document.title.indexOf('SETME') > 0)
      {alert('You must set the contents of the "<TITLE>" tag!');return;}

         
   //CHECK META TAGS CONTENT
   var mymetatags = document.getElementsByTagName("meta"); 
   for (i=0;i < mymetatags.length;i++)
      {
      var name = mymetatags[i].getAttribute("name");
      var content = mymetatags[i].getAttribute("content");
      if (content.indexOf('SETME') > 1)
         {alert('You must set the contents of the "' + name + '" meta tag!');return;}
      }
   }

