function OpenPopUp(uPath, uBreite, uHoehe, uScroll, uMenue) {
 if (uPath != "") {
  locWindow=window.open(uPath,"VRS","left=1,top=1,width="+uBreite+",height="+uHoehe+",scrollbars="+uScroll+",menubar="+uMenue+",resizable=yes,toolbar=yes");
  locWindow.focus();
 }
}
function myshortcut(shortcut){
  newlocation = shortcut;
  setTimeout( 'location=newlocation', 50 );
}

function openWindowExtern(uUrl) 
{ 
  if (uUrl.length < 1) 
       return; 
  locWindow=window.open(uUrl, '_blank');
  locWindow.focus();
}
