//This is for Rotating Text
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;
onload = start;

//Testimonials go here...
var ar = new Array();
ar[0] = "<b>You created a powerful tool that you give to others, especially through the way you live it. You don't DO your life, Marianne; you ARE your life. You are a pioneering, trailblazing, exemplifying woman, leading the way for others through sheer example. You are fierce beauty! Thank you for being who are are! - A.L.</b>";
ar[1] = "<b>Marianne, thank you so much for all you give. Your unique depth of soul and courage looks into the fires of truth and unblinkingly accepts it for what it is. You perseveringly live your soul's freedom by being congruent with your integrity and allowing yourself to be a living expression of it. Your faith drives you to show up again and again. In time, with your help, enough kindred souls will join you in living this freedom. With great warmth and undaunted devotion, you give your heart, sincerely and humbly. You have impeccability as both a teacher and student of life. - A.S.</b>";
ar[2] = "<b>I appreciate your take on life and how you use it to help others. You've examined your 60 years and gleaned important lessons from your experience. Since you've been so long on the path of those you help, I find you quite skilled at reading me. Rather than suggesting what I should think and feel, your series of questions draws forth my thoughts and feelings, which lead YOU down my path. In doing so, I am empowered to set my life right. - C.C.</b>";
//Sample with link -> ar[n] = "<B>Hot sites:</B> <A HREF='/3d/'>3D Animation Workshop</A>";
var num = 0;

function start() {
  setInterval("update()", 15000);
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}
//End of Rotating Text

function showDate() {
   <!--  Activate Cloaking Device 
   var now = new Date(); 
   var yr = now.getYear(); 
   var mName = now.getMonth() + 1; 
   var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate(); 
 
   if(mName==1) Month="January"; 
   if(mName==2) Month="February"; 
   if(mName==3) Month="March"; 
   if(mName==4) Month="April"; 
   if(mName==5) Month="May"; 
   if(mName==6) Month="June"; 
   if(mName==7) Month="July"; 
   if(mName==8) Month="August"; 
   if(mName==9) Month="September"; 
   if(mName==10) Month="October"; 
   if(mName==11) Month="November"; 
   if(mName==12) Month="December"; 

// String to display current date. 
    var todaysDate =(" " + Month + " " + dayNr + ", " + "" + yr + "<BR>"); 
 
// Write date to page. 
   document.open(); 
   document.write("<CENTER><FONT FACE=ARIAL COLOR=#000000 SIZE=2>"+todaysDate+"</FONT></CENTER>"); 
}

function show_something( )
{
    myMessageWindow=window.open("something.htm", "messageWindow", "width=515, scrollbars=yes");
}

function openPopup(winID)
{
    myMessageWindow=window.open(winID,"newwin",config="width=250, height=75,location=no,status=no,directories=no,toolbar=no,scrollbars=no,menubar=no,top=260,left=265");
}


