function ZweiFrames(URL1,URL2)
        {
        parent.frames[0].location.href=URL1;
        parent.frames[1].location.href=URL2;
        }

function OpenNewWindow(url)
	{
	var openWin = window.open(url,'x','fullscreen=0,toolbar=0,location=0,directories=0,status=1,menubar=0,scrolling=1,scrollbars=1,resizable=1');
	if (openWin) return false;
	else return true;
	}