// JavaScript Document

function afficheImage(path, width, height)
{
	var params = "toolbar=no,width=" + (width+50) + ",height=" + (height+50) + ",status=no,scrollbars=yes"
	nam = "chat";
	win = window.open('', nam, params);
	
	win.document.open("text/html", "replace");
	
	var code ="<html><title>Photo</title><body><div align=center><a href='Javascript:window.close();'><img border='0' src='" + path + "'></a></div><script>window.focus();</script></body></html>";
	
	win.document.write(code);
}

function displayImage(path, date, width, height)
{
	var params = "toolbar=no,width=" + (width+50) + ",height=" + (height+50) + ",status=no,scrollbars=yes"
	win = window.open("/image.php?path=" + path + "&date=" + date, "photo", params);
}