// JavaScript Document// Öppna popUp-fönster // Exempel: newWindow('sidan.html','50','535','535');function newWindow(i,n,w,h) {	var over=window.open(i,n,"height="+h+","+"width="+w,"top=0","left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no"); 	over.focus();}
