/*<!-- mp_trans_disable_start -->*/ 
Date.DayNames=['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];Date.MonthNames=['January','February','March','April','May','June','July','August','September','October','November','December'];Date.ShortMonthNames=['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];Date.DaysInMonth=[31,28,31,30,31,30,31,31,30,31,30,31];Date.prototype.getDaysInMonth=function(){return(this.getMonth()==1&&this.isLeapYear())?29:Date.DaysInMonth[this.getMonth()];}
Date.prototype.getMonthName=function(){return Date.MonthNames[this.getMonth()];}
Date.prototype.getShortMonthName=function(){return Date.ShortMonthNames[this.getMonth()];}
Date.prototype.getDayOfWeekAsString=function(){return Date.DayNames[this.getDay()];}
Date.prototype.isLeapYear=function(){if(this.getYear()%400==0){return true;}else if(this.getYear()%4!=0||this.getYear()%100==0){return false;}else{return true;}}
var currFormElement=null;function openDateChooser(buttonImage,formElement){if((buttonImage!=null&&formElement!=null)){currFormElement=formElement;buttonImage=eval('document.images.'+buttonImage);calLyrTop=buttonImage.offsetTop;calLyrLeft=buttonImage.offsetLeft;document.getElementById('dateChooser').style.top=calLyrTop;document.getElementById('dateChooser').style.left=calLyrLeft;document.getElementById('dateChooser').style.visibility='visible';}else{document.getElementById('dateChooser').style.visibility=(document.getElementById('dateChooser').style.visibility=='visible')?'hidden':'visible';}}
var currFormElementDay=null;var currFormElementMonth=null;var currFormElementYear=null;function openDateChooser_ext(buttonImage,formElementDay,formElementMonth,formElementYear){if((buttonImage!=null&&formElementDay!=null)){var oDateChooser=document.getElementById('dateChooser');currFormElementDay=formElementDay;currFormElementMonth=formElementMonth;currFormElementYear=formElementYear;buttonImage=document.getElementById(buttonImage);var calLyrTop=buttonImage.offsetTop;var calLyrLeft=buttonImage.offsetLeft;oDateChooser.style.top=calLyrTop+'px';oDateChooser.style.left=calLyrLeft+'px';oDateChooser.style.visibility='visible';oDateChooser.style.width='136px';oDateChooser.style.height='141px';}else{document.getElementById('dateChooser').style.visibility=(document.getElementById('dateChooser').style.visibility=='visible')?'hidden':'visible';}}
function loadCal(turl){document.layers.dateChooser.src=turl;}
 /*<!-- mp_trans_disable_end -->*/