function GeoLocation() {
navigator.geolocation.getCurrentPosition(geook, geofalse);
document.title = "Max Großmanns Website – Geolokalisierung...";
function geook(position) {
lat = position.coords.latitude;
long = position.coords.longitude;
document.title = "Max Großmanns Website – Geolokalisierung";
document.getElementById("content").innerHTML = "
Geolokalisierung
Ihr ungefährer Standort:
\n
Größere Karte anzeigen\n";
}
function geofalse() {
alert("Wissen Sie. Sie müssen das schon irgendwie erlauben, sonst klappt das nicht so ganz.");
}
}
if (navigator.geolocation) {
document.write('');
}
function doMouse(handle) {
if (!handle)
handle = window.event;
document.getElementById("content").innerHTML += ".
";
}
function Mouse() {
document.getElementsByTagName("body")[0].onmousemove = doMouse;
}
/* document.write(''); */
function mod(a,b) {
return a%b;
}
function unfade() {
document.getElementById("_Pic").style.opacity -= 0.2;
if (document.getElementById("_Pic").style.opacity >= 0) {
window.setTimeout("unfade()",75);
}
}
function rem(obj) {
unfade();
window.setTimeout("document.getElementById('_Pic').style.display = 'none';document.getElementById('_Pic').id = '__';document.getElementById('bigImg').src = '';document.getElementById('bigImg').id = '_';",375);
}
function fade() {
document.getElementById("bigImg").style.opacity -= -0.075;
if (document.getElementById("bigImg").style.opacity <= 1) {
window.setTimeout("fade()",75);
}
}
function pic_goin(obj,desc,img) {
location.href = "#top";
body = document.getElementsByTagName("body")[0];
body.innerHTML += "
"+desc+"© Max Großmann ";
window.setTimeout("fade()",75);
}