aboutsummaryrefslogtreecommitdiffstats
path: root/functions/todo.js
blob: a3b82e722f7c59f9a5df02f9ef4985bf8a3dab01 (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

<script language="JavaScript">
<!--
	function openTodoInfo(vtodo, calendarname, start, due, description, status)
	{	
		var windowW = 450;
		var windowH = 275;
	
		var url = "includes/todo.php?vtodo="+vtodo+
			"&calendar_name="+calendarname+
			"&start="+start+
			"&due="+due+
			"&description="+description+
			"&status="+status;
				
		options = "scrollbars=no"+",width="+windowW+",height="+windowH;
	
		info = window.open(url, "Popup", options);
		
		info.focus();
	}

//-->
</script>

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