var month=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
var today=new Date()
var thisDate=today.getDate()
var thisMonth=month[today.getMonth()]
var year=today.getYear()
if (year < 1000) {year += 1900};
var TheDate=thisMonth+" "+thisDate+", "+year

	function newVenueWin(venueWin) {

		VenueWindow = window.open(venueWin,'venueInfo','toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=yes,resizable=yes,width=710,height=510');
		VenueWindow.focus();

	}
    
	function newVenueWin2(venueWin,x,y) {
     	 var VenueWindow2;
      	VenueWindow2 = window.open(venueWin,'venueInfo','toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=yes,resizable=yes,width='+x+',height='+y);
      	VenueWindow2.focus();
}

