// JavaScript Document

function fenster(URL){
	window.open(URL,"","toolbar=no,directories=no,menubar=no,height=606,width=808");
}

function popup(mylink, windowname)
{
	if (! window.focus) return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'top=20,left=0,width=1044,height=768,scrollbars=no');
return false;
}

function popupflex(mylink, windowname)
{
	if (! window.focus) return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'top=20,left=0,width=1044,height=768,scrollbars=no,resizable=yes');
return false;
}

function popup2(mylink, windowname)
{
	if (! window.focus) return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'top=20,left=0,width=810,height=600,scrollbars=no');
return false;
}


