function $_GET(name){try{var urls=window.location.href.split(/\?/);var paramPart=urls[1];var params=paramPart.split(/\&/);for(i in params){var p=params[i].split(/\=/);if(p[0]==name)return p[1]}}catch(e){return null}}function GetCheckedCheckboxes(name){var values=new Array();var boxes=document.getElementsByName(name);for(i in boxes){if(boxes[i].checked){values.push(boxes[i].value)}}return values}function SetCalendarHeight(){$('#divCalendarStart').height($('#mainContent').height()-5)}Array.prototype.toJson=function(){var json="[";for(i=0;i<this.length;i++){json+=this[i];if(i!=this.length-1){json+=","}}json+="]";return json}