/* START OF FILE */
/* FILENAME: hypnohealth.js */
/* Javascript for hypnohealth website */



/* START onload=checkUser() function */


function checkUser()
{
  



}


/* END onLoad load() function */




/* FUNCTION UPDATECLOCK */


function UpdateClock(){
    var time= new Date();
    hours = time.getHours();
    mins = time.getMinutes();
    if (!document.images) return;
  digit = mins % 10;
    document.images.minsones.src=eval("digit"+digit+".src");
  digit = (mins - (mins % 10))/10;
  document.images.minstens.src=eval("digit"+digit+".src");
  if (hours > 12)
    document.images.ampm.src=digitpm.src;
  else
    document.images.ampm.src=digitam.src;
  if (hours > 12) hours = hours - 12;
  digit = hours % 10;
  document.images.hoursones.src=eval("digit"+digit+".src");
  digit = (hours - (hours % 10))/10;
  document.images.hourstens.src=eval("digit"+digit+".src");
  document.images.colon.src=digitcolon.src;
  setTimeout("UpdateClock()",30000);

  }


/* END UPDATECLOCK */




function checkForm(formName) {
 
 var sendForm = 1;
 var whatForm = document.getElementById(formName);
 var count = whatForm.elements.length;
 for (x=0; x < count; x++) {
  var dataLine = whatForm.elements[x].value;
  var asterixCheck = dataLine.indexOf("*");
  if (dataLine == "") {
   theElement = whatForm.elements[x].getAttribute("name");
    if (theElement == "telephone") {
    

    }
    else {

    sendForm = 2;
    break;
   }
  }
  else {
   if ( asterixCheck != -1 ) {
   theElement = whatForm.elements[x].getAttribute("name");
   sendForm = 3;
   break;
   }
  }
 
 } // end for x
 
 if ( sendForm == 1 ) {
   whatForm.submit();
 }
 if ( sendForm == 2) {
 
	if (theElement == "sp_q"){
	
		alert("Please enter your search terms into the search box and press the search icon.");
		
	}
 }
 if ( sendForm == 3 ) {
   alert("Please remove the asterix from the search input field and try again.");
 }


   

} // end checkForm(formName)




/* startprintBanner() */

function printBanner() {

document.write("<a href=\"http://hypnohealth.spiritualpsychology.org.uk\">");
document.write("<img src=\"http://www.spiritualpsychology.org.uk/hypnohealth/images/hypnotherapy-health-holistic-banner.gif\" border=\"0\" alt=\"Hypnotherapy Health Holistic\" align=\"middle\"></a>");

}

/* end printBanner() */




/* ------------------------------------------------------ */



/* start navigation() */


function navigation()
{

document.write("<div align=\"center\">");

document.write("<form class=\"navigation_form\" name=\"searchDB\" method=\"get\" action=\"http://search.atomz.com/search/\">");
document.write("<input type=\"hidden\" name=\"sp_a\" value=\"sp1003fc77\">");
document.write("<input type=\"hidden\" name=\"sp_p\" value=\"all\">");
document.write("<input type=\"hidden\" name=\"sp_f\" value=\"ISO-8859-1\">");
document.write("<div id=\"menu\">");
document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/index.php\">Welcome</a> | ");
document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_about.php\">About Us</a> | ");

document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_services.php\">Services</a> | ");

document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnotherapy_health_holistic_home_visits.php\">Home Visits</a> | ");

document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_fees.php\">Fees</a> | ");

document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health _holistic_shop.php\">Shop</a> | ");

document.write("<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_contact.php\">Contact</a> ");

/* search code and search button */

document.write("<input class=\"searchbox\" type=\"text\" name=\"sp_q\" size=\"20\">");

document.write("<img alt=\"Click to activate your search of the HYPNOHEALTH site\" src=\"http://www.spiritualpsychology.org.uk/hypnohealth/images/hypnotherapy-health-holistic-search.gif\" border=\"0\" align=\"absmiddle\" onClick=\"checkForm('searchDB')\">");

document.write("&nbsp;<a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_help.php\"><img src=\"http://www.spiritualpsychology.org.uk/hypnohealth/images/hypnotherapy_health_holistic_help.gif\" alt=\"HYPNOHEALTH: Help\"></a>");

/* end of the navigation form that contains the search input type */
document.write("</form>");



/* end of div align */
document.write("</div>");







}
/* end navigation() */


/* ------------------------------------------------------ */

/* start printFooter() */

function printFooter() {
document.write("<br><br<br><br>");
document.write("<div class=\"footer\">HYPNOTHERAPY * HOLISTIC HEALTH * LOVE * WISDOM * GOODNESS * BALANCE * PEACE * HARMONY</div>");
document.write("<p><a href=\"http://www.spiritualpsychology.org.uk/hypnohealth/hypnotherapy_health_holistic_contact.php\"><i>Sara Gurton D.Hyp., PDCBHyp: Registered Hypnotherapist and Cognitive Behavioural Hypnotherapist</i></a></p>");
document.write("<p class=\"copyright\"><a href=\"#top\">top of this page</a></p>");
document.write("<p class=\"copyright\">Copyright@2007<span class=\"hh\">Hypnohealth</span><span class=\"tm\">TM</span></p>");


}
/* end printFooter() */



/* END OF FILE */


