function ShowWindow(urllink,wx,hx){
	hdiv = document.getElementById("popupbio");
	hdiv.style.width=wx+"px";
	var darkdiv = document.getElementById("darkover");
	hdiv.style.heigth=hx+'px';
	hdiv.style.marginLeft=-wx/2+'px';
	darkdiv.style.display='block';
	hdiv.style.display='block';
	resultPic="<img src="+urllink+" />";
	hdiv.innerHTML=resultPic;
}
function HideWindow(){
	var hdiv = document.getElementById("popupbio");
	var darkdiv = document.getElementById("darkover");
	hdiv.style.display='none';
	darkdiv.style.display='none';
}