function CheckPressed(uParam)
{
 locTaste = window.event.keyCode;
 if (locTaste==13)
 {
  document.login.submit();
 }
}

function OpenPopUp(uName, uTitle, uBreite, uHoehe, uLeft, uTop, uScrollbar)
{
 locPath=uName;
 
 if (locPath!="") {
  locWindow=window.open(locPath,uTitle,"left="+uLeft+",top="+uTop+",width="+uBreite+",height="+uHoehe+",scrollbars="+uScrollbar+",resizable=yes,caption=no,menubar=no");
  locWindow.focus();
 }
}