/*
Filnamn:		scripts.js
Författare:		Novitell AB
				Anja Bjerleus 2007-08-28
Syfte:			Används för javascript i systemet.		
Variabler:		Se nedan. 			
*/
/*PopUp-ruta*/
function openWindow(url)
{
	newWindow=window.open(url, 'Information', 'toolbar=no,location=no,copyhistory=no,directories=no,scrollbars=yes,resizable=yes,width=450,height=640,left=50,top=10');
	newWindow.focus();
}

