
function showhide(id,kind){
	if (kind=="visible"){
		movetop(id);
		moveleft(id);
	}
	
	document.getElementById(id).style.visibility=kind;
}

function moveleft(id){
	//k="karte";
	//alert(document.all[k].style.left);
	x = event.clientX + document.body.scrollLeft;
	if(x < 0) { x = 0; }
	x = x + 50;
	document.getElementById(id).style.left=x;
}
function movetop(id){
	Y = event.clientY + document.body.scrollTop;
	Y = Y + 200;
	if (Y>document.body.offsetHeight){
		Y = document.body.offsetHeight-400;
		//alert("fenserh�he");
	}else{
		Y = Y - 400;
	}
	
	if(Y < 0) { Y = 0; }
	document.getElementById(id).style.top=Y;
}



