function popHome(id) {
		alert("YES");
		var url;
		url = "showhome.php?id=" + id;
		window.open(url, "popHome" + id, "location=yes, width=400, height=300, status=no, scrollbars=no, resizable=yes, toolbar=no, menubar=no");
}
function swapImg(toWhat) {
		var pic = document.getElementById("homepic");
		pic.src = toWhat;
}