		// this function is used in the internation calendar to alert the current date
		function alertSelection(){
			window.location='imprezy-wgdaty-'+this.date.print("Y-m-d");

			//alert(this.date.print("Y-m-d"));
		}
		
		window.addEvent("load", function(){
			var today = new Date();
			
			
			
			var td_events = [];
			var d_16 = (today.getMonth()+1)+'-16-'+today.getFullYear();
			td_events[d_16] = {'click':function(td, date_str){alert(new Date().fromString(date_str));}};
			
			
			var dateon = [];
			var d_14 = (today.getMonth()+1)+'-14-'+today.getFullYear();
			dateon[d_14] = function(td, date_str){
				td.setStyle('background-color', '#fff');
			};
			

			
																		
																		
			var ge_cal = new Calendar("cal_pl", null, {inputType:"none",
									onSelect: alertSelection,
									idPrefix:'de_cal',
									visible: true,
									startDay:1,
									allowWeekendSelection:true,
									
									language:{
										'days':{
											'char':['N','P','W','Ś','C','P','S'],
											'short':['Nd','Po','Wt','Śr','Cz','Pt','So'],
											'mid':['Nie','Pon','Wto','Śro','Czw','Pią','Sob'],
											'long':['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota']
										},
										'months':{
											'short':['Sty','Lut','Mar','Kwi','Maj','Cze','Lip','Sie','Wrz','Paź','Lis','Gru'],
											'long':['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec','Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień']
										},
										'am_pm':{
											'lowerCase':['am','pm'],
											'upperCase':['AM','PM']
										}
									}
									
								});	
								
				

																	
		});
