aboutsummaryrefslogtreecommitdiffstats
path: root/functions/event.js
blob: 2b78312ec8fe0935db9117236b6cb7a50b9fea9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script language="JavaScript">
<!--
	function openEventInfo(event, calendarname, start, end, description)
	{	
		var windowW = 450;
		var windowH = 275;
	
		var url = "event.php?event="+escape(event)+
			"&calendar_name="+escape(calendarname)+
			"&start="+escape(start)+
			"&end="+escape(end)+
			"&description="+escape(description);
				
		options = "scrollbars=no"+",width="+windowW+",height="+windowH;
	
		info = window.open(url, "Popup", options);
		
		info.focus();
	}

//-->
</script>

© 2014-2024 Faster IT GmbH | imprint | privacy policy