function open_internerlink_nw(url,w,h)
	{
	l = Math.round(screen.width/2)-Math.round(w/2);
	t = Math.round(screen.height/2)-Math.round(h/2);
	window.open(url,'','left='+l+',top='+t+',dependent=no,width='+w+',height='+h+',scrollbars=yes,status=no,toolbar=no,menubar=no');
	}

function openwindow(url,width,height)
	{
	left_window = (screen.width-width)/2;
	top_window  = (screen.height-height)/2.5;
	window.open(url,'asdas','width='+width+',height='+height+',left='+left_window+',top='+top_window+',resizable=no,menubar=0,location=0,status=no,toolbar=yes,scrollbars=yes');
	}

function gotoanker(ankername)
	{
	document.location.href="#" +ankername;
	}

function zeige_bild(bezeichnung,sitzungsid) 
	{
	var adresse = 'artikelbilder_gross.asp?sid='+sitzungsid+'&artikelbild=' + bezeichnung;
	var win = window.open(adresse,'zeige_bild','width=700,height=500,resizable=0,scrollbars=yes,screenX=100,screenY=100');
	win.focus();
	}

function drucken(sitzungsid,p_punkteid,punkteid)
	{
	window.open('anzeige.asp?sid='+sitzungsid+'&p_punkteid='+p_punkteid+'&punkteid='+punkteid+'&modus=druck');
	}

		
//Aussehen Navi
	
function high(LinkObject)
	{
	//LinkObject.style.background='#E5E5E5';
	LinkObject.style.cursor='hand';
	}

function low(LinkObject)
	{
	//LinkObject.style.background='';
	LinkObject.style.cursor='default';
	}
	
function fhigh(object,klasse)
	{
	object.className=klasse;
    //object.style.color = '#666666';
	}

function flow(object,klasse)
	{
	object.className=klasse;
   	//object.style.color = '#FFFFFF';
	}
		
/*		
		
//Layer unterscheidung ob IE oder NS
if (document.layers)  
	{
     ns = 1; ie = 0; 
	} 
else 
	{
     ns = 0; ie = 1;
    }

function init() 
	{
    if (ns) ebene = document.nameEbene;
    if (ie) ebene = nameEbene.style;
    }
	
function zeigen(ebene) 
	{
    if (ns) ebene.visibility = 'show';
    if (ie) ebene.visibility = 'visible';
    }

function verbergen(ebene) 
	{
     if (ns) ebene.visibility = 'hide';
     if (ie) ebene.visibility = 'hidden'";
    }
*/