aboutsummaryrefslogtreecommitdiffstats
path: root/functions/event.js
blob: 8b0ebb20932115b810e57817c48fc80afe66a988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php 
// Version Info:
// 21-jan-03, Marook: Removed Scrollbar param, to allow browser to auto-disply when needed.
?>
<script language="JavaScript" type="text/javascript">
<!--
	function openEventInfo(event, calendarname, start, end, description, status)
	{	
		var windowW = 460;
		var windowH = 275;
	
		var url = "includes/event.php?event="+event+
			"&cal="+calendarname+
			"&start="+start+
			"&end="+end+
			"&description="+description+
			"&status="+status;
				
		options = "scrollbars=yes,width="+windowW+",height="+windowH;
	
		info = window.open(url, "Popup", options);
		
		info.focus();
	}

//-->
</script>

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