function pop(img,artist,w,h){
var large = (screen.width - width) / 2;
var haut = (screen.height - height) / 2;
config='toolbar=no,directories=no,status=no,menubar=no,width='+w+',height='+h+'left='+large+',top='+haut+'';
config += 'scrollbars=no,resizable=no';
if (navigator.platform == "MacPPC" && navigator.appName == "Microsoft Internet Explorer") {
		var width = width-16;
		var height = height-16;
		}	
pop = window.open ("","pop",config);
pop.document.write('<html><head>');
pop.document.write('<script language="javascript">');
pop.document.write('setTimeout(');
pop.document.write('"self.close()');
pop.document.write(';",15000)');
pop.document.write('</');
pop.document.write('script>');
pop.document.write('<title>'+artist+'</title>');
pop.document.write('<style type=text/css>');
pop.document.write('body {margin:0;padding:0};');
pop.document.write('</style></head>');
pop.document.write('<body>');
pop.document.write('<img src='+img+' width='+w+' height='+h+' alt='+artist+'>');
pop.document.write('</body></html>');
pop.focus();
//pop.onBlur=pop.window.close(); 10/mai/2005 13:25
};