//(c) Dr. Stefan Schwarz, www.vmod.de

//Java-Skripts
function popUp(URL, id, height, width) 
{
	if( !width )
	{
		if( !height ) height=460;
		scrollbar="scrollbars=no,";
		width=600;
		if(height > 600)
		{
			scrollbar="scrollbars=yes,";
			width=520;
		}
	}
    else
	{
		if( !height )height=500;
		scrollbar="scrollbars=no,";
	}
	
	scrollbar="scrollbars=yes,";
	win = window.open(URL, "" + id, scrollbar+"width="+width+",height="+height+",statusbar=1,toolbar=0,menubar=0,resizable=1,left=325,top=202");
	
	if (win.opener == null)
	{ // for Nav 2.0x 
   	win.opener = self; // this creates and sets a new property 
	}

	win.focus();
}

function testScript(ident)
{
	//Setzen der hidden-Variablen auf true, damit wird erkannt dass JS aktiv ist
	ident.value='ok';
}


function popUpError(errortext)
{
	eval("page" + id + " = window.open('error.php?error="+errortext+"', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,width=483,innerWidth=465,height=465,left = 325,top = 202');");
}