<!-- Created on 2007-dec-06 19:47:23 -->

function login(anchorname) {
	var popup_div = new PopupWindow("login_div");
	if(browser == "IE"){
	popup_div.offsetY = -160;
	popup_div.offsetX = -60;
	}
	else{
	popup_div.offsetY = -160;
	popup_div.offsetX = -240;
	}
	popup_div.autoHide();
	popup_div.populate('<p style="font-weight: bold">LOGGA IN<br \/><form name="loginform" action="/process/login.php" method="post">Användarnamn: <input name="username" type="text" size="20" \/><br \/><br \/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Lösenord: <input name="password" type="password" size="20" \/><br \/><br \/><button type="submit" name="skicka">Skicka<\/button><\/form><\/p>');
	popup_div.showPopup(anchorname);
	document.forms.loginform.username.focus();
}

function growImage()
{
  document.sidotext.width = document.sidotext.width + 9;
  document.sidotext.height = document.sidotext.height + 1;

  if (document.sidotext.width < 284) 
  {
    my_timeout = setTimeout("growImage();", 5);
  }
}
