//-----------------------------------------------------------------------------
//-- Copyright by demic IT
//-- File: arena.js
//-- Author: Magnus Miller
//-- Date: Dezember 2010
//-- Description: Druckfunktion, Neues Fenster
//-----------------------------------------------------------------------------

function neuesFenster(url, width, height)
{
	var fenster;
	var top=20;
	var left=20;

	fenster = window.open(url, 'Zweitfenster', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	fenster.focus();
}

function neuesFensterNoScroll(url, width, height)
{
	var fenster;
	var top=20;
	var left=20;

	fenster = window.open(url, 'Zweitfenster', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	fenster.focus();
}
