  function show1(element){

           element.className += "hover";

   }

 function hide1(element){

           element.className = element.className = "";

     }
     
     function spamSaveMail(email)
{
	var realMail = email.replace(/\(at\)/g, "@");
	document.location.href='mailto:'+realMail;
}

function showinfo(id)
{


	document.getElementById(id).className = "boxshow";
}
 function hideinfo(id){

           document.getElementById(id).className = "boxhide";

     }


function mouspos(e) {
	var posx;
	var posy;
	id="infobox";
	if (e != null ) {
if (e.pageX || e.pageY) 	{
		posx = e.pageX;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY) 	{
		posx = e.clientX + document.body.scrollLeft
			+ document.documentElement.scrollLeft;
		posy = e.clientY + document.body.scrollTop
			+ document.documentElement.scrollTop;
	}

	document.getElementById(id).style.left = posx+15+'px';
	document.getElementById(id).style.top = posy+'px';
}

	}
	function jsinit() {
	posx=0;
	posy=0;
	infobox=null;
document.onmousemove = mouspos;
}
