<!--

var winH = 460;

if( typeof( window.innerHeight) == 'number' ) {
   //Non-IE
    winH = window.innerHeight;
} 
else 
   if( document.documentElement && document.documentElement.clientHeight ) {
      //IE 6+ in 'standards compliant mode'
      winH = document.documentElement.clientHeight;
   }
   else 
      if( document.body && document.body.clientHeight ) {
         //IE 4 compatible
         winH = document.body.clientHeight;
      }

YOffset=(winH-215)/2;
if (YOffset < 48)
   YOffset=48;

XAlign=2;
XOffset=0;
staticYOffset=YOffset;
waitTime=500;
slideX=1;
slideXSpeed=40;
slideY=1;
slideYSpeed=40;
slideOnYOverflow=1;
autoHideXOverflow=1;
targetFrame="";
targetDomain="";
operaFix=1;
menuOpacity=100;
menuPosition=1;
menuBGColor="black";
menuWidth=99;
hdrBGColor="#a020f0";
hdrPadding=1;
hdrAlign="center";
hdrVAlign="center";
linkBGColor="white";
linkOverBGColor="#FFCFFF";
linkAlign="left";
linkVAlign="center";
linkPadding=0;
barWidth=20;
barBGColor="#a020f0";
barAlign="center";
barVAlign="center";
barType=1;
barText="MENU"; 

//The Menu's Items
addHdr("Love + Light");
addItem("Home", "http://www.smoe.org/tara/index.php", "_self");
addItem("News", "http://www.smoe.org/tara/news/index.htm", "_self");
addItem("Calendar", "http://www.smoe.org/tara/calendar.htm", "_self");
addItem("Gallery", "http://www.smoe.org/tara/gallery/index.php", "_self");
addItem("Discography", "http://www.smoe.org/tara/discography/index.htm", "_self");
addItem("Song Lyrics", "http://www.smoe.org/tara/lyrics/index.htm", "_self");
addItem("Videos", "http://www.smoe.org/tara/video.htm", "_self");
addItem("Awards", "http://www.smoe.org/tara/awards.htm", "_self");
addItem("Links", "http://www.smoe.org/tara/links.htm", "_self");
addItem("Contacts", "http://www.smoe.org/tara/contacts.htm", "_self");
addHdr("&nbsp;");
buildMenu();

RightNow = new Date();
var Year = RightNow.getFullYear();
window.defaultStatus='Copyright © '+Year+' "Love + Light". All Rights Reserved.';

function DefaultStatus () {
   window.status=window.defaultStatus
   status=window.defaultStatus
   return true
}

if (document.layers)
   document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=DefaultStatus
document.onmouseout=DefaultStatus

function NewWindow (url, width, height, name, resizable, scrollbars) {
   xTop = screen.width/2 - (width/2)-10;
   yTop = screen.height/2 - (height/2)-40;

   if (xTop < 0) {
      xTop = 0;
      width = screen.width-10;
   }

   if (yTop < 0) {
      yTop = 0;
      height = screen.height-58;
   }
   window.open(url, name, 'height='+height+',width='+width+',scrollbars='+scrollbars+',resizable='+resizable+',menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
}

// Disable right click script III- By Renigade (renigade@mediaone.net)
// For full source code, visit http://www.dynamicdrive.com

var mouse="";

function clickIE () {
   if (document.all) {
      (mouse);return false;
   }
}

function clickNS (e) {
   if (document.layers||(document.getElementById&&!document.all)) {
      if (e.which==2||e.which==3) {
         (mouse);return false;
      }
   }
}

if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;
}
else {
   document.onmouseup=clickNS;document.oncontextmenu=clickIE;
}

document.oncontextmenu=new Function("return false")
// --> 
