

function statusIn(szDirection) {
	self.status = szDirection;
}

function statusOut(OwnerName) {
	self.status = OwnerName;
}


function gotoYear(site) {
if (site != "foo") 
   {self.location = site}
else 
   {document.listview.EventYear.selectedIndex = 0}

}

function gotoMonth(site) {
if (site != "foo") 
   {self.location = site}
else 
   {document.listview.EventMonth.selectedIndex = 0}

}


function gotosite(site) {
if (site != "foo") 
   {self.location = site}
else 
   {document.SearchFrm.sQuery.selectedIndex = 0}

}

function goSections(site) {
	if (site != "foo") 
	   {self.location = site}
	else 
	   {document.frmCal.EventSections.selectedIndex = 0}
	}
	
function help(ref) {
	var width = 375, height = 525;
	var left = document.body.clientWidth - width - 15;
	var helpCenter = window.open(ref,'helpCenter','directories=no,toolbar=no,resizable=yes,menubar=no,height='+height+',width='+width+',top=15,left='+left+',scrollbars=no');
	helpCenter.focus();
}