/* Used only for Nordeas popups */
var newWindow = null

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close()
	}
}

function popup(url) {
   closeWin()
   newWindow = open(url,"popup","toolbars=0,statusbar=0,menubar=0,scrollbars=1,resizable=1,width=572,height=345,top=100,left=100")
   newWindow.focus()
   return false // Firefox ignores this, so we have to add 'return false' to the onclick
}