// JS file Reserva Dar Justo
var resaheader = {
	init:function(lang,typeO,newW){
		resaheader.lang=lang;
		resaheader.typeO=typeO;
		resaheader.newW=newW;
		document.id('resaheader').getElement('a').addEvents({
			'click' : function(){
				// From
				var fromDate = document.id('resaheader').getElement('#fromdate').value;
				if(fromDate!='' && fromDate!=null){fromDate="&arrivo="+fromDate;} else {fromDate='';}
				// To
				var toDate = document.id('resaheader').getElement('#todate').value;
				if(toDate!='' && toDate!=null){toDate="&partenza="+toDate;} else {toDate='';}
				// Oferta
				if(resaheader.typeO!='' && resaheader.typeO!=null){resaheader.typeO="&rateplans="+resaheader.typeO;} else {resaheader.typeO="";}
				var url = "http://crs.hotelnet.biz/CRS/wbenew/preselection.aspx?hotel=2437&portale=0000"+fromDate+toDate+resaheader.typeO+"&lingua="+resaheader.lang;
				if(resaheader.newW==1){
					// Mediabox.open(url, 'Booking - Riad Dar Justo', '950 500');
					window.location.href=url;
				} else {
					window.location.href=url;
				}
			}
		});
	}
}
