
// COPYRIGHT 2009 © Tara Concepts


<!-- START HEADER CODE

var showimage 		= "yes"	 		// SHOW random image
var bordercolor		= "000000"		// SCROLLER AND IMAGE BORDER COLOR
var edge_distance	= "10"			// PLACE IMAGE FROM EDGE
var showscroller	= "yes"	
var dateLR		= "right"		// DATE LEFT OR RIGHT


// START DATE SCRIPT
function showDate() {

document.write('<div class="printhide">');
var d=new Date()
var weekday=new Array("Sun","Mon","Tue","Wed","Thur","Fri","Sat")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\">" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("&nbsp;&nbsp;&nbsp;</span>")
document.write('</div>');

}
//  End -->

// SMALL RANDOM PICTURE AREA
function mmRandomPic() {
	
   if (showimage == "yes") {

var twox = "<img src=\"images/";
var thrx = " width=\"113\" height=\"100\" border=\"0\" bordercolor=\"#ffffff\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*4);
img = forx;
if (img == "0") {
document.write(twox+ 'h1.jpg"' +thrx);
}
if (img == "1") {
document.write(twox+ 'h2.jpg"' +thrx);
}
if (img == "2") {
document.write(twox+ 'h3.jpg"' +thrx);
}
if (img == "3") {
document.write(twox+ 'h4.jpg"' +thrx);
}
}
else {
document.write('<img src="images/spacer.gif" width="10" height="10"><br>');
}
document.write('<align="right" valign="middle" width="10">');
document.write('<img src="images/spacer.gif" width="10" height="10"><br>');

}


//BOOKMARK

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}


// POPUP WINDOW
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_openBrWindowR2F(theURL,winName,features) { //v2.0
	theURL = theURL+'?rf='+window.document.location;
  window.open(theURL,winName,features);
}

//STYLESHEET SWAPPER
function setActiveStyleSheet(title) {
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  }
}

// START SCROLLER

function mmNewsScroller() {
	
if (navigator.userAgent.indexOf('Safari') != -1)     
{
document.write(' ')
}
else {

   if (showscroller == "yes") {
document.write('<br>');
document.write('<TABLE align="center" cellpadding="0" cellspacing="0" border="0" bordercolor="#333333" style="border-collapse:collapse"><tr><td>')
Tscroll_init (0)
document.write('</td></tr></table>')
}
} 
}