function displayImage(path) {

if (document.getElementById) {
		document.getElementById("pathImage").src="../upload/"+path;
	}

}

function setLink(id, path) {

if (document.getElementById) {
		document.getElementById("link").innerHTML = "<a href=\"delimage.php?id="+id+"&name="+path+"\"><img src=\"/images/demote.gif\" border=\"0\" /></a>";
	}

}