/**************************************************************************************************
* Master page level JavaScript functions
***************************************************************************************************/

function openSendApp(nazwa, usrUpr, grantLink, grantApps, komunikat) {	
	if(usrUpr > 0) {
		var link = "/Commons/Files/mailings/app.send.prep.php?nazwa=" + (nazwa) + "&link=" + escape(grantApps) + "&apps=" + escape(grantApps);
		appWindow = window.open(link,'app', 'location=no,menubar=no,status=no,resizable=no,dependent=yes,width=310,height=400,screenX=50,screenY=150,left=50,top=150')
		appWindow.focus();
	} else {
		alert(komunikat);
	}
}


function openSendError(uprawnienia) {	

	var link = "/Commons/Files/mailings/error.send.prep.php?tytul=" + (document.title) + "&link=" + escape(location.protocol + '//' + location.hostname + location.port + top.location.pathname + top.location.search + top.location.hash) + "&upr=" + escape(uprawnienia);
	errWindow = window.open(link,'print', 'location=no,menubar=no,status=no,resizable=no,dependent=yes,width=310,height=400,screenX=50,screenY=150,left=50,top=150')
	errWindow.focus();
}
