// JavaScript Document

function chgPic(pic,url){
	document.images[pic].src=url; 

}

function newwin(url) {
popup_content=window.open(url,'Content','width=700,height=500,top=10,left=10,history=no,resizable=no,status=no,scrollbars=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 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 showLayer(inhalt){
		
    var pos = new Object(); 
	var b = (window.document.compatMode && window.document.compatMode == "CSS1Compat") ? window.document.documentElement : window.document.body || null; 
    
	if (b) { 
		pos.left = 200;  
    	pos.top = 200;
	} 
	else if(document.layers) { 
        // Netscape 4. 
        pos.left = 200; 
        pos.top = 200; 
    } 

	document.getElementById('showimage').style.width=800+'px';
	document.getElementById('showimage').style.top=200+'px'; 
	document.getElementById('showimage').style.left=200+'px';

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

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