function winopen()
{
var popUpSizeX=700;
var popUpSizeY=500;

var popUpLocationX=50;
var popUpLocationY=50;

var popUpURL="http://";


splashWin=window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');

splashWin.blur();
window.focus();

splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
splashWin.focus();
}

function Hide(id)
{
obj = (document.getElementById ? document.getElementById(id) : (document.all ? document.all[id] : (document.layers ? document.layers[id] : null)));
obj.style.visibility = (obj.style.visibility = 'hidden');
};

function Show(id)
{
obj = (document.getElementById ? document.getElementById(id) : (document.all ? document.all[id] : (document.layers ? document.layers[id] : null)));
obj.style.visibility = (obj.style.visibility = 'visible');
};

function HideAll()
{

};

function Galerie(dateiname)
{
  obj = (document.getElementById ? document.getElementById('show') : (document.all ? document.all['show'] : (document.layers ? document.layers['show'] : null)));
  obj.style.visibility = (obj.style.visibility = 'visible');
  obj.style.width = '100%';
  obj.style.height = '100%';

}
