
function imageWindow(id)
{
	 window.open ("image.php?id=" + id,
								"Listing Image","menubar=0,status=0,toolbar=0,location=0,resizable=0,width=800,height=600"); 
}

function resizeWindow()
{
	width = document.images[0].width + 25;
	height = document.images[0].height + 70;
	
	window.resizeTo(width, height)
}