// JavaScript Document


function evntSwap(id1, id2, id3)
{
	var head1 = id1+"-header";
	var head2 = id2+"-header";
	var head3 = id3+"-header";
	var cntnt1 = id1+"-content";
	var cntnt2 = id2+"-content";
	var cntnt3 = id3+"-content";
	$(cntnt1).style.display = "block";
	$(cntnt2).style.display = "none";
	$(cntnt3).style.display = "none";
	
	$(head1).className = "eventMenuItem eventMenuCurrent";
	$(head2).className = "eventMenuItem";
	$(head3).className = "eventMenuItem";
}

<!-- Pop up Script -->

function popUp(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,status=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=500,height=600,left = 262,top = 134');");

}

function openwindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  return false;
}

function popitup(url) {
	newwindow=window.open(url,'name','height=550,width=700,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

// Script for copy right year
var copyrightyear = "&copy; 2009,"
