function popup1(url,width,height)
{
	stuff = "left = 200, top = 200,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no,width= " +width + ", height = " +height
	window.open(url, "POPUP" , stuff );
}

function popup2(url,width,height)
{
	stuff = "left = 100, top = 100,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no,width= " +width + ", height = " +height
	window.open(url, "POPUP" , stuff );
}

 
function login()
{
if (document.check.user.value=="")
{
alert("Du har ej fyllt i fält: USER");
return false;
} else if (document.check.pass.value=="")
{
alert("Du har ej fyllt i fält: PASS");
return false;
}
}



