
function showDescription(str) {
	document.getElementById(str).style.display='block';
	var width = (document.body.clientWidth)/3+30;
	var height = (document.body.clientHeight)/3+100;
    document.getElementById(str).style.left = width +'px';
    document.getElementById(str).style.top = height +'px';
}
function hideDescription(str) {
	document.getElementById(str).style.display='none';
}

