

function show_inf(strInfName, strLang)
{
	
  var strInfPage = new String;
  var intSecNo = 0;
  
  if (strInfName == "help")
      {strInfPage="./infopages/help_" + strLang + ".htm"}
	  
  if (strInfName == "disclaimer")
      {strInfPage="./infopages/disclaimer_" + strLang + ".htm"}
  
  if (strInfName == "contact")
      {strInfPage="./infopages/Info-Universities.htm"}

  var v_left=screen.width-800;
  var v_hoehe=800;
  
  neuesFenster = window.open(strInfPage,strInfName,"width=800,height=" + v_hoehe + ",left=" + v_left + ",top=20,dependent=yes,scrollbars=yes,resizable=yes");
  neuesFenster.focus();
}

function show_searchpage(PageNo)
{
  document.forms[0].elements['ResultPageNo'].value=PageNo;
  document.forms[0].submit()
}

function show_website(strWeblink)
{
  var subWindow = window.open(strWeblink,"","width=800,height=500,scrollbars=yes,resizable=yes");
  subWindow.focus();
}

