if ((navigator.appName.indexOf('Microsoft')+1)) {
document.write('<style type="text/css"> .opacity1 {filter:alpha(opacity=80)}</style>'); }
if ((navigator.appName.indexOf('Netscape')+1)) {
document.write('<style type="text/css"> .opacity1 {-moz-opacity:0.8}</style>'); }
else {
document.write(''); }

var ns4 = document.layers?1:0;
var ns6 = (document.styleSheets&&!document.all)?1:0;
var ie = document.all?1:0;
var tout = 1000;
var timerID = null;

function popupLayerTransp(num) {
var x = 200;
var y = 160;
//alert(x+" "+y);
	clearTimeout(timerID);
	text = '<table cellpadding="3" bgcolor="#ffffff"><tr><td>';
	num = text += '<img src=image/space.gif border=0 width=350 height=360>';
	text += "</td></tr></table>";
	//text = '<img src=test/spaceblk.gif border=0 width=20 height=20>'; 
	if (ns4) {
		document.describe.document.open();
		document.describe.document.write(text);
		document.describe.document.close();
	}
	else if (ns6||ie) {
		popup = eval(document.getElementById("describe"));
		popup.innerHTML = num;
		popup.style.left = (x);
		popup.style.top = (y);		
	} 
}

function popupLayerRahmen(num,posi) {
var x = 50;
var y = 50;
//alert(x+" "+y);
	clearTimeout(timerID);
	text = '<table cellpadding="3" bgcolor="#ADD8E6" onmouseover="clearTimeout(timerID)" onmouseout="timerID=setTimeout(\'hideLayer()\',1000)"><tr><td>';
	num = text += '<img src=image/space.gif border=0 width=20 height=20 border=1>';
	text += "</td></tr></table>";
	//text = '<img src=test/spaceblk.gif border=0 width=20 height=20>'; 
	if (ns4) {
		document.rahmen.document.open();
		document.rahmen.document.write(text);
		document.rahmen.document.close();
		document.rahmen.left = (x + posi);
		document.rahmen.top = (y + posi);		
	}
	else if (ns6||ie) {
		popup = eval(document.getElementById("rahmen"));
		popup.innerHTML = num;
		popup.style.left = (x + posi);
		popup.style.top = (y + posi);		
	} 
}

function hideLayerTransp(num) {
	if (ns4) {
		eval(document.describe.top = num);
	}
	else if (ns6) {
		document.getElementById("describe").innerHTML = "";
	} 
	else if (ie) {
		document.all.describe.innerHTML="";
	}
}

function hideLayerRahmen(num) {
	if (ns4) {
		eval(document.rahmen.top = num);
	}
	else if (ns6) {
		document.getElementById("rahmen").innerHTML = "";
	} 
	else if (ie) {
		document.all.rahmen.innerHTML="";
	}
}

