/*******************************************************************************
**
** SiteCube Component for hosting in Web Pages
** Copyright (C) 2007  IWM Development Austria
**
** Author:	Wimmer Manfred
**          Schifer Thomas
**
*******************************************************************************/

var thisbrowser;

function f1(form)
{
   location = form.options[form.selectedIndex].value;
}

function f2(url1,url2)
{
   // parent.NAVI.location.href=url1;
   parent.MAIN.location.href=url2;
}

function winopen(popUp,sizeX,sizeY,LocX,LocY,wert,sroll)
{
   // Here resize the PopUp
   var popUpSizeX = sizeX;
   var popUpSizeY = sizeY;

   // Here move it to any poiny on screen
   var popUpLocationX = LocX;
   var popUpLocationY = LocY;

   splashWin = window.open("",'x','fullscreen=' + wert + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + sroll + ',resizable=0');

   splashWin.blur();
   window.focus();

   splashWin.resizeTo(popUpSizeX,popUpSizeY);
   splashWin.moveTo(popUpLocationX,popUpLocationY);
   splashWin.location=popUp;
   splashWin.focus();
}


/* ------------- Browsercheck ----------------------------------------------- */

if(document.layers){
	thisbrowser="N4";		/* Netscape 4 */
}
if(document.all){
	thisbrowser="ie";		/* Internet Explorer */
}
if(!document.all && document.getElementById){
	thisbrowser="N6";		/* Netscape 6 */
}

/* --------------------------------------------------------------------------- */

function ShowLayer(number) {
      var x = document.getElementById("Lay"+number);
      var j = 1;
      while(document.getElementById("Lay"+j)){
         document.getElementById("Lay"+j).style.visibility = "hidden";
         j++;
      }
      x.style.visibility = "visible";
}

