// JavaScript Document
function newwin(url,windowname){
	popup_content=window.open(url,'Dokumente','width=800,height=600,top=20,left=20,history=no,resizable=yes,status=no,scrolling=yes,toolbar=no,menubar=no,location=no,dependent=yes');
	popup_content.focus();
}
function newwin2(url,windowname){
	popup_content=window.open(url,windowname,'width=500,height=670,top=100,left=500,history=no,resizable=no,status=no,scrolling=yes,toolbar=no,menubar=no,location=no,dependent=yes');
	popup_content.focus();
}
function newwin3(url,windowname){
	popup_content=window.open(url,windowname,'width=700,height=650,top=10,left=10,history=no,resizable=no,status=no,scrollbars=yes,toolbar=no,menubar=no,location=no,dependent=no');
	popup_content.focus();
}

function showLayer(weite,name,ansprechpartner,adresse,ort,telefon1,fax,telefon2,Ereignis){
		
	evt = Ereignis;
    	var pos = new Object(); 
    	
	var b = (window.document.compatMode && window.document.compatMode == "CSS1Compat") ? window.document.documentElement : window.document.body || null; 
    
	if (b) { 
		pos.left = evt.clientX;  
    		pos.top = evt.clientY;
	        pos.scrollLeft= pos.left + b.scrollLeft; 
        	pos.scrollTop = pos.top + b.scrollTop;
	} 
	else if(document.layers) { 
        	// Netscape 4. 
        	pos.scrollLeft = evt.pageX; 
        	pos.scrollTop = evt.pageY; 
        	pos.left = evt.pageX - window.pageXOffset; 
        	pos.top = evt.pageY - window.pageYOffset; 
    	} 

	document.getElementById('showimage').style.width=weite+'px';
	document.getElementById('showimage').style.top=pos.scrollTop+'px'; 
	document.getElementById('showimage').style.left=pos.scrollLeft+'px';
		
	inhalt='<table width="'+weite+'" cellspacing="0" cellpadding="3" style="border: solid 1pt #191970;" bgcolor="#EAEAEA">';
	inhalt = inhalt+'<tr>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+'<td align="right" colspan="2">';
	inhalt = inhalt+'<img src="pics/schliessen.gif" width="14" onClick="hideLayer();"/>&nbsp;';
	inhalt = inhalt+' </td>';
	inhalt = inhalt+' </tr>';
	inhalt = inhalt+'<tr>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+'<td><strong>';
	inhalt = inhalt+name;
	inhalt = inhalt+'</strong><br /><br />';
	inhalt = inhalt+ansprechpartner+'<br>';									
	inhalt = inhalt+adresse+'<br />';
	inhalt = inhalt+ort+'<br /><br />';
	inhalt = inhalt+'Telefon: '+telefon1+'<br />';
	
	if(fax!="") inhalt = inhalt+'Telefax: '+fax+'<br />';
	if(telefon2!="") inhalt = inhalt+'Mobil: '+telefon2+'<br />';
	
	inhalt = inhalt+'<br />';										
	inhalt = inhalt+' </td>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+' </tr>';
	inhalt = inhalt+' </table>';

	document.getElementById('showimage').innerHTML=inhalt;
	document.getElementById('showimage').style.visibility='visible';
}

function showLayer1(weite,name,ansprechpartner,adresse,ort,telefon1,fax,web,Ereignis){
		
	evt = Ereignis;
    	var pos = new Object(); 
    	
	var b = (window.document.compatMode && window.document.compatMode == "CSS1Compat") ? window.document.documentElement : window.document.body || null; 
    
	if (b) { 
		pos.left = evt.clientX;  
    		pos.top = evt.clientY;
	        pos.scrollLeft= pos.left + b.scrollLeft; 
        	pos.scrollTop = pos.top + b.scrollTop;
	} 
	else if(document.layers) { 
        	// Netscape 4. 
        	pos.scrollLeft = evt.pageX; 
        	pos.scrollTop = evt.pageY; 
        	pos.left = evt.pageX - window.pageXOffset; 
        	pos.top = evt.pageY - window.pageYOffset; 
    	} 

	document.getElementById('showimage').style.width=weite+'px';
	document.getElementById('showimage').style.top=pos.scrollTop+'px'; 
	document.getElementById('showimage').style.left=pos.scrollLeft+'px';
		
	inhalt='<table width="'+weite+'" cellspacing="0" cellpadding="3" style="border: solid 1pt #191970;" bgcolor="#EAEAEA">';
	inhalt = inhalt+'<tr>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+'<td align="right" colspan="2">';
	inhalt = inhalt+'<img src="pics/schliessen.gif" width="14" onClick="hideLayer();"/>&nbsp;';
	inhalt = inhalt+' </td>';
	inhalt = inhalt+' </tr>';
	inhalt = inhalt+'<tr>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+'<td><strong>';
	inhalt = inhalt+name;
	inhalt = inhalt+'</strong><br /><br />';
	inhalt = inhalt+ansprechpartner+'<br>';									
	inhalt = inhalt+adresse+'<br />';
	inhalt = inhalt+ort+'<br /><br />';
	inhalt = inhalt+'Telefon: '+telefon1+'<br />';
	
	if(fax!="") inhalt = inhalt+'Telefax: '+fax+'<br />';
	if(web!="") inhalt = inhalt+'<br />Web: '+web+'<br />';
	
	inhalt = inhalt+'<br />';										
	inhalt = inhalt+' </td>';
	inhalt = inhalt+'<td width="10"><img src="pics/dummy_grau.gif" width="10" /></td>';
	inhalt = inhalt+' </tr>';
	inhalt = inhalt+' </table>';

	document.getElementById('showimage').innerHTML=inhalt;
	document.getElementById('showimage').style.visibility='visible';
}

function hideLayer(){
	document.getElementById('showimage').style.visibility='hidden';
}
