function closeWin(){
	window.close();	
}

function showImg(id){
	document.getElementById(id).style.display="block";
}
function hideImg(id){
	document.getElementById(id).style.display="none";
}