<!--

var a1=8;//Anzahl der Bilder
var a2=1;//Startwert der Bilder
var a3=Math.floor(Math.random()*a1)+a2;
document.write('<a href="news.html"><img width=140 height=80 alt="Titelbild (Javascript muss aktiviert sein!)" src="bilder/tit'+String(a3)+'.jpg"></a>');

function picpop_600(bildurl,bildtitel)
{
var eigenschaft,sbreite,shoehe,fenster,b=600,h=450;

// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = (sbreite-b)/2;
y = (shoehe-h)/2;

eigenschaften="screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write("<script type='text/javascript' language='JavaScript'>");
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click ");
  document.write("</script>");
  document.write('<title>'+ bildtitel +'</title></head>');
  document.write('<body onblur="window.close()" '); // bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" >');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0" alt=" '+ bildtitel +' - Fenster schließt automatisch/ Window closes automatically">');
  document.write('<center>');
  document.write('</body></html>');
  fenster.document.close();
}
}

wmtt = null;
document.onmousemove = updateWMTT;
function updateWMTT(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x - 170) + "px";
		wmtt.style.top 	= (y + 00) + "px";
	}
}
function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}
function hideWMTT() {
	wmtt.style.display = "none";
}

//-->
