function getURL(depth){
	ns=(document.layers)?true:false;
	ns6=(document.getElementById&&!document.all)?true:false;
	ie=(document.all)?true:false;

	if(ie||ns6)var f = eval("window.document.events.Month");
  if(ns) var f = eval("document.events.Month");
	
	var strMake = f.options[f.selectedIndex].value;
	
	if (strMake == 'None')
		strMake = "";
	else
  //strMake = strMake;
	document.location.href =  depth + "events/index.asp?include="+ strMake;
}    


function openWin(URL,sizeX, sizeY,menus) {
	winLeft=eval(screen.availWidth/2)-(sizeX/2);
	winTop=eval(screen.availHeight/2)-(sizeY/2);
	
	locations = "no";
	
	if(menus == 1){
		menu = "yes";
	}else{
		menu = "no";
	}
	
	if(menus == 2){
		if(!ie){
			locations = "yes";
		}else{
			locations = "no";
		}
		toolbar = "yes";
	}else{
		toolbar = "no";
	}
	
	
  siteWindow = window.open
	(URL,"pop","width="+sizeX+",height="+sizeY+",toolbar="+toolbar+",location="+locations+",directories=no,status=no,menubar="+menu+",scrollbars=no,resizable=yes,left="+winLeft+",top="+winTop)
}