/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/

function init_reservation_portlet() {
	//
	// Set Quickfinder date to current day
	//
	var today = new Date();
	var today_day   = today.getDate();
	var today_month = today.getMonth();
	var today_year  = today.getFullYear();
	
	if ($('SrchFromDay') != undefined) {
		$('SrchFromDay').options[today_day-1].selected = true;
		$('SrchFromMonth').options[today_month].selected = true;
		$('SrchFromYear').options[0].value = today_year;
		$('SrchFromYear').options[0].text = today_year;
	}
}
