// showinfo()
var isOpen = false;

function showinfo(e){
	if(isOpen == false){
		isOpen = true;
		var obj = document.getElementById('explination');
		// find mouse position
		obj.style.display = "block";
		obj.style.height = "auto";
		obj.style.width = "250px";
		
		var posx = 0;
		var posy = 0;
		
		posx = 10;
		posy = 10;
		
		obj.style.left = posx + "px";
		obj.style.top = posy + "px";
	}
	else {
		closeExplination();
	}
}

function showinfo2(e){
	if(isOpen == false){
		isOpen = true;
		var obj = document.getElementById('explination');
		// find mouse position
		obj.style.display = "block";
		obj.style.height = "auto";
		obj.style.width = "250px";
		var posx = 0;
		var posy = 0;
		if(window.ActiveXObject){
			posx = 250;
			posy = 420;
		} 
		else 
		{
			posx = 300;
			posy = 420;
		}
		obj.style.left = posx + "px";
		obj.style.top = posy + "px";
	}
	else {
		closeExplination();
	}
}

function closeExplination(){
	var obj = document.getElementById('explination');
	obj.style.display = "none";
	isOpen = false;
}	