function show(id) 
{
if (document.getElementById)
document.getElementById(id).style.visibility="visible";
}

function hide(id) 
{
if (document.getElementById)
document.getElementById(id).style.visibility="hidden";
}


function position(id)
{
//wolkenposition pro auslösender ID festlegen

if (document.getElementById(id)=="tuer")
var top="62";
var left="144";
var width="278";
var height="177";


document.getElementById.wolke.style.position="hidden";




}
