﻿var oNewWin = null;
function fnNewWindow(sURL, sName, iWidth, iHeight, bScrollbars, bResizable) {
	if (oNewWin == null || oNewWin.closed) {
		iLeft	= (screen.width) ? (screen.width-iWidth)/2 : 0
		iTop	= (screen.height) ? (screen.height-iHeight)/2 : 0
		sSettings = 'height='+iHeight+',width='+iWidth+',top='+iTop+',left='+iLeft+',scrollbars='+bScrollbars+',resizable='+bResizable+''
		oNewWin = window.open(sURL, sName, sSettings)
		if (!oNewWin) {
			if (sName == 'EmployeeInvoice') {
					alert('Vinduet blev ikke åbnet.\r\rDu har muligvis en popup blocker installeret.\r\rKlik på [UDSKRIV FAKTURA] for at åbne vinduet.');
			} else {
				alert('Betalingsvinduet blev ikke åbnet.\r\rDu har muligvis en popup blocker installeret.\r\rKlik på [Gå til betaling] for at åbne vinduet.');
			}
		}
		return false
	}
}

