//Gabi JavaScript

//Stand
function datum()
{
	mn=new Array("Januar","Febr.","März","April","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez.")
	d=new Date(document.lastModified)
	m=mn[d.getMonth()]
	t=d.getDate()
	jj=d.getYear()
	j=(jj>=2000)?jj:((jj<80)?jj+2000:jj+1900)
	dat=(t+". "+m+" "+j)
}

document.write("<a href='mailto:?subject=Seitenempfehlung&body=");
document.write("Diese Seite m&ouml;chte ich weiterempfehlen: ");
document.write(location.href);
document.write("'></a>");


// Bilderzoom

function zoom(url)
{
  win=window.open(url, "_blank","scrollbars=no,status=no,menubar=no,toolbar=no,width=460,height=500,left=0,top=0,resizable=no");
  win.moveTo(0,0);
}

// Bilderzoom grosse Bilder

function zoom2(url)
{
  win=window.open(url, "_blank","scrollbars=no,status=no,menubar=no,toolbar=no,width=550,height=500,left=0,top=0,resizable=no");
  win.moveTo(0,0);
}


/*Linkklick*/
function ton()
{
document.getElementById("sound").Run();
}
