/* var browser_name = navigator.appName;
  //var browser_version = navigator.appVersion.substring(0,4);
  if (browser_name=="Microsoft Internet Explorer") {
  var myBrowser=navigator.appVersion.split("MSIE ");
  var myBrowser2=myBrowser[1];
var myBrowser3=myBrowser2.split(";"); 
var browser_version=myBrowser3[0];
 if (browser_version < 7) {
 document.write("<link rel='stylesheet' href='/css/ie6_cal.css' type='text/css' media='all' />");
 }
  }

function DatePicker(name) {
this.name = name;
this.dt = new Date();
document.write('<span id="' + name +
'" class="DatePicker"></span>');
}
 
DatePicker.prototype.show = function(dt, callback) {
if ( dt ) this.dt = dt;
this.callback = callback;
 
 
  
// if not rendered yet, do so
if ( !this.oSpan ) this.render();
   
// set coordinates

//this.oSpan.style.left = x;
//this.oSpan.style.top = y;

 
this.fill();

this.oSpan.style.visibility = "visible";
this.oMonth.focus();
}
 
DatePicker.prototype.hide = function() {
if ( this.oSpan ) this.oSpan.style.visibility = "visible";
}
 
DatePicker.prototype.render = function() {
var oT1, oTR1, oTD1, oTH1;
var oT2, oTR2, oTD2;
 
this.oSpan = document.getElementById(this.name);
this.oSpan.appendChild(oT1 = document.createElement("table"));
oT1.border = 1;
 
oTR1 = oT1.insertRow(oT1.rows.length);
oTD1 = oTR1.insertCell(oTR1.cells.length);
oTD1.colSpan = 7;
oTD1.className = 'DatePickerHdr';
 
oT2 = document.createElement("table");
oTD1.appendChild(oT2);
oT2.border = 0;
 
oTR2 = oT2.insertRow(oT2.rows.length);

oTD2 = oTR2.insertCell(oTR2.cells.length);
oTD2.title = this.texts.prevMonth;
oTD2.onclick = function() { this.oDatePicker.onPrev(); }
oTD2.oDatePicker = this;
oTD2.innerHTML = "&lt;&lt;";
oTD2.className = 'DatePickerHdrBtn';
 
oTD2 = oTR2.insertCell(oTR2.cells.length);
this.oMonth = document.createElement("select");
oTD2.appendChild(this.oMonth);
this.oMonth.oDatePicker = this;
this.oMonth.onchange = this.oMonth.onkeyup =
function() { this.oDatePicker.onMonth(); }
for ( var i = 0; i < 12; i++ ) {
this.oMonth.add(new Option(this.texts.months[i], i),undefined);
}
 
this.oYear = oTR2.insertCell(oTR2.cells.length);
this.oYear.title = this.texts.yearTitle;
this.oYear.oDatePicker = this;
this.oYear.onclick = function() { this.oDatePicker.onYear(); }
this.oYear.className = 'DatePickerHdrBtn';
 
oTD2 = oTR2.insertCell(oTR2.cells.length);
oTD2.title = this.texts.nextMonth;
oTD2.onclick = function() { this.oDatePicker.onNext(); }
oTD2.oDatePicker = this;
oTD2.innerHTML = "&gt;&gt;";
oTD2.className = 'DatePickerHdrBtn';
 
oTR1 = oT1.insertRow(oT1.rows.length);
for ( i = 0; i < 7; i++ ) {
oTH1 = document.createElement("th");
oTR1.appendChild(oTH1);
oTH1.innerHTML = this.texts.days[i];
oTH1.className = 'DatePicker';
}
 
this.aCells = new Array;
for ( var j = 0; j < 6; j++ ) {
this.aCells.push(new Array);
oTR1 = oT1.insertRow(oT1.rows.length);
for ( i = 0; i < 7; i++ ) {
this.aCells[j][i] = oTR1.insertCell(oTR1.cells.length);
this.aCells[j][i].oDatePicker = this;
this.aCells[j][i].onclick =
function() { this.oDatePicker.onDay(this); }
}
}
}

 
DatePicker.prototype.fill = function() {
// first clear all
this.clear();
 
// place the dates in the calendar
var nRow = 0;
var d = new Date(this.dt.getTime());
var m = d.getMonth();
for ( d.setDate(1); d.getMonth() == m; d.setTime(d.getTime() + 86400000) ) {
var nCol = d.getDay();
this.aCells[nRow][nCol].innerHTML = d.getDate();
 
if ( d.getDate() == this.dt.getDate() ) {
this.aCells[nRow][nCol].className = 'DatePickerBtnSelect';
}
if ( nCol == 6 ) nRow++;
}
 
// set the month combo
this.oMonth.value = m;
 
// set the year text
this.oYear.innerHTML = this.dt.getFullYear();
}
 
DatePicker.prototype.clear = function() {
for ( var j = 0; j < 6; j++ )
for ( var i = 0; i < 7; i++ ) {
this.aCells[j][i].innerHTML = "&nbsp;"
this.aCells[j][i].className = 'DatePickerBtn';
}
}

DatePicker.prototype.onPrev = function() {
 if ( this.dt.getMonth() == 0 ) {
 this.dt.setFullYear(this.dt.getFullYear() - 1);
 this.dt.setMonth(11);
 } else {
 this.dt.setMonth(this.dt.getMonth() - 1);
 }
 this.fill();
}
 
DatePicker.prototype.onNext = function() {
 if ( this.dt.getMonth() == 11 ) {
 this.dt.setFullYear(this.dt.getFullYear() + 1);
 this.dt.setMonth(0);
 } else {
 this.dt.setMonth(this.dt.getMonth() + 1);
 }
 this.fill();
}

 
DatePicker.prototype.onMonth = function() {
 this.dt.setMonth(this.oMonth.value);
 this.fill();
}

 
DatePicker.prototype.onYear = function() {
 var y = parseInt(prompt(this.texts.yearQuestion, this.dt.getFullYear()));
 if ( !isNaN(y) ) {
 this.dt.setFullYear(parseInt(y));
 this.fill();
 }
}

DatePicker.prototype.onDay = function(oCell) {
 var d = parseInt(oCell.innerHTML);
 if ( d > 0 )
 {
 this.dt.setDate(d);
 this.hide();
 this.callback(this.dt);
 }
}

 
DatePicker.prototype.texts = {
 months: [
 "January", "February", "March",
 "April", "May", "June",
 "July", "August", "September",
 "October", "November", "December"
 ],
 days: ["S", "M", "T", "W", "T", "F", "S"],
 prevMonth: "Previous Month",
 nextMonth: "Next Month",
 yearTitle: "Year. Click to modify.",
 yearQuestion: "Enter a new year:"
}

function showDP(oTxt,init_cat) {
	var browser=navigator.appName
	document.eventsearch.eventDate.value = "";
	//document.eventsearch.category.value = init_cat;
	//document.eventsearch.county.value = init_cou;
	var today=new Date();
	var myMonth = today.getMonth()+1;
	var myDate = today.getDate();
	if (myMonth < 10) {myMonth = "0" + myMonth;}
	if (myDate < 10) {myDate = "0" + myDate;}
	var myYear = today.getYear() + 1900;
	if (browser=="Microsoft Internet Explorer") {myYear = myYear -1900;}
//var defaultDate = myMonth+"/"+myDate+"/"+(myYear);
var defaultDate = "Click date on right";
	
 if ( !document.getElementById ) return;
 
 // since we control the text format in callback(), getting the date is easy
 if (defaultDate != "Click date on right") {
 var aDt = document.eventsearch.eventDate.value.split("/");
 var dt = null;
 if ( aDt && (aDt.length == 3) ) {
 dt = new Date(parseInt(aDt[2]),parseInt(aDt[0])-1,parseInt(aDt[1]));
 }}
  document.eventsearch.eventDate.value = defaultDate;
 
 // store the textbox for use in the client
 oDatePicker.client = oTxt;
 
 oDatePicker.show(dt, callback);
}
 
function callback(dt)
{
	var chosenMonth = dt.getMonth() + 1;
	var chosenDay = dt.getDate();
	if (chosenMonth < 10) {chosenMonth = "0"+ chosenMonth;}
	if (chosenDay < 10) {chosenDay = "0"+ chosenDay;}
 oDatePicker.client.value =
 chosenMonth + "/" +
chosenDay + "/" +
 dt.getFullYear();
 document.eventsearch.eventDate.value = oDatePicker.client.value;
 viewEvents();
// alert(document.getElementById('eventDate').value.substring(6,10) + "/" + document.getElementById('eventDate').value.substring(0,2) + "/" + document.getElementById('eventDate').value.substring(3,5));

}

function searchCal() {
	if (document.eventsearch.eventDate.value == "Click date on right")
	{alert ("Please choose a date from the\ncalendar before searching.");}
	else {viewEvents();}
}

*/