// This function is used to display a new browser window
// with the clicked image
// copyrights Ideal-com, Ch. Boesiger 22.07.2004

function show_this(a) {

	N = document.images[a].src;
	pos = N.lastIndexOf("/") + 1;
	URL = N.substr(pos);
	newURL = URL.replace(/V/,"I");
	phpURL = "montreOeuvre.php?img=" + newURL;

	new_win = window.open(phpURL, "coucou", "resizable=no,scroll=no");
	
	new_win.focus();
	
}
