﻿// JScript-Datei

function showPopUp(file, windowname, popwidth, popheight, scrollbar)
{
    var mainWindow = window.open(file,windowname,'width='+popwidth+',height='+popheight+', scrollbars='+scrollbar+'');
    mainWindow.focus();
}



function TextClearFocus (Id, Text)
{
 if (document.getElementById(Id).value == Text)
 {
   document.getElementById(Id).value = ""
 }
 
}
function TextClearBlur (Id, Text) {
  if (document.getElementById(Id).value == "")
   {
     document.getElementById(Id).value = Text
   }
}

function OpenCloseLayer (LayerId, LinkId)
{

    if(document.getElementById(LayerId).style.display == 'none')
    {
      document.getElementById(LayerId).style.display = 'block';
      document.getElementById(LinkId).className = 'openlink linktop';
    }
    else
    {
      document.getElementById(LayerId).style.display = 'none';
      document.getElementById(LinkId).className = 'openlink linkbottom';
    }
}


