function showImage(imgName, w, h){
	var box = document.getElementById('imagebox');
	box.src = "image.php?i="+imgName;
	box.style.width = w + 50;
	box.style.height = h + 100;
	box.style.display = 'block';
}
function hideImg(){
	document.getElementById('imagebox').style.display = 'none';
}