


function openCal( ) {

   if (document.calSelectForm.calSelect.selectedIndex == 0 ) return;
   if (navigator.appName == "Microsoft Internet Explorer") {
	var url = "/rex/pandect.tcpagent.Launch/s@" + 
	           document.calSelectForm.calSelect.options[document.calSelectForm.calSelect.selectedIndex].value + 
	           "/collections/searchGroupsByDate.html";
	window.open(url,  "_top" ); 
   } else {
	var url = "../../s@" + 
	document.calSelectForm.calSelect.options[document.calSelectForm.calSelect.selectedIndex].value + 
	"/collections/searchGroupsByDate.html";
	window.open(url,  "_top" ); 
   }

}

function doQuickSearch(baseURL) {
	var url = baseURL + "collections/eventSearch.html?mode=quick&quikTerms=" + document.QSearch.quikTerms.value;
	confirm(url)
	window.open(url, "_top");
}

function openHotlink( ) {

   if (document.hotlinkSelectForm.hotlinkSelect.selectedIndex == 0 ) return;

   if (navigator.appName == "Microsoft Internet Explorer") {
	var url = document.hotlinkSelectForm.baseURL.value + "collections/searchGroupsByDate.html?hotlink=" +
 	   document.hotlinkSelectForm.hotlinkSelect.options[document.hotlinkSelectForm.hotlinkSelect.selectedIndex].value;

	window.open(url,  "_top" ); 

   } else {

	var url = "searchGroupsByDate.html?hotlink=" + 
 	   document.hotlinkSelectForm.hotlinkSelect.options[document.hotlinkSelectForm.hotlinkSelect.selectedIndex].value;
	window.open(url,  "_top" ); 
   }

}

function openHotlink2BecauseMSisCrap( ) {

   if (document.hotlinkSelectForm.hotlinkSelect.selectedIndex == 0 ) return;

   if (navigator.appName == "Microsoft Internet Explorer") {
	var url = document.hotlinkSelectForm.baseURL.value + "collections/searchGroupsByDate.html?hotlink=" +
 	   document.hotlinkSelectForm.hotlinkSelect.options[document.hotlinkSelectForm.hotlinkSelect.selectedIndex].value;

        if(document.hotlinkSelectForm.hotlinkDelete.checked) {

             url = url + "&del-hotlink=on"
        }

	window.open(url,  "_top" ); 

   } else {

	var url = "searchGroupsByDate.html?hotlink=" + 
 	   document.hotlinkSelectForm.hotlinkSelect.options[document.hotlinkSelectForm.hotlinkSelect.selectedIndex].value;

        if(document.hotlinkSelectForm.hotlinkDelete.checked) {

             url = url + "&del-hotlink=on"
        }
	window.open(url,  "_top" ); 
   }

}


