﻿
function openNetbank(){
    var netbankWindow;
    var width = screen.width * 0.9;
    var height = screen.height * 0.85;
	//window.location.hostname
	var browserSpec;
	var userAgent = "";
	if(navigator)
	{
	    userAgent = navigator.userAgent;
	}
	
    if (userAgent.indexOf("Firefox") >= 0 || userAgent.indexOf("MSIE 6.") >= 0 )
	{
	    //IE 6, Firefox
		browserSpec = 'location=no,toolbar=1';
	}
	else if (userAgent.indexOf("Chrome") >= 0 )
	{
	    //Chrome .. doesn't seem to work after all.. :-/
		browserSpec = 'location=yes,toolbar=1';
	}
	else if (userAgent.indexOf('MSIE 8.') >= 0 || userAgent.indexOf('opera') >= 0)
	{
	    //IE 8, opera
		browserSpec = 'location=yes';
		height = screen.height * 0.81;
	}else{
	    //default
	    //IE 7..
		browserSpec = 'location=yes';
	}
	var sX = (screen.width - width)/2;
    var sY = (screen.height - height)/3;
	netbankWindow = window.open('https://www.eikbank.dk/Style Library/Includes/Netbank/netbank.htm','netbankWindow','width=' + width + ',height=' + height +',resizable=yes,' + browserSpec + ',left=' + sX + ',top=' + sY);
	//netbankWindow = window.open('/Style Library/Includes/Netbank/netbank.htm','netbankWindow','width=' + width + ',height=' + height +',resizable=yes,location=yes,left=' + sX + ',top=' + sY);
	function checkPopup(){
		if (!netbankWindow){
			alert('Netbanken blev ikke åbnet på grund af en popup-blocker.\nDu skal indstille din browser til at tillade popup-vinduer for at kunne anvende Netbanken.');
		}
	}
	setTimeout(checkPopup,200);
    location.href = '/';
}