<!--
  ScreenWidth = screen.width;
  ScreenHeight = screen.height;

  xsize = (ScreenWidth)-(ScreenWidth/5.7); 	//hier die Breite des neuen Fensters
  ysize = (screen.height)-25;  			//hier die Hoehe des neuen Fensters
  
  xpos = ((ScreenWidth/2)-(xsize/2))*2;		//hier befindet sich die Positionsangabe
  ypos = 0;					//hier befindet sich die Positionsangabe

  function OpenFormat(){
            window.moveTo(xpos,ypos)
            window.resizeTo(xsize,ysize)
  }



function OpenDe(){
  window.open("http://deutsch.magyar-kuria.info/index.htm","de","toolbar=no,menubar=yes,width=xsize,height=ysize,left=0,top=0,status=1,scrollbars=1,resizable=yes")
}

function OpenEn(){
  window.open("http://english.magyar-kuria.info/index.htm","en","toolbar=no,menubar=yes,width=xsize,height=ysize,left=0,top=0,status=1,scrollbars=1,resizable=yes")
}


function OpenNl(){
  window.open("http://nederlands.magyar-kuria.info/index.htm","nl","toolbar=no,menubar=yes,width=xsize,height=ysize,left=0,top=0,status=1,scrollbars=1,resizable=yes")
}


function OpenSfr(){
  window.open("http://deutsch.magyar-kuria.info/indexsfr.htm","de","toolbar=no,menubar=yes,width=xsize,height=ysize,left=0,top=0,status=1,scrollbars=1,resizable=yes")
}


function OpenSt(){
  window.open("http://english.magyar-kuria.info/indexst.htm","en","toolbar=no,menubar=yes,width=xsize,height=ysize,left=0,top=0,status=1,scrollbars=1,resizable=yes")
}



//--

