	function showPHOTO(ref,name,w,h)
	{
		var win = window.open ( '','cdcover',
						'width=' + w + ',height=' + h + 
						',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no' )
		var doc = win.document;
		
		doc.open()
		doc.write('<html><head><title>' + name + 
				  '</title></head><body bgcolor=#000000 marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>' );
		doc.write('<img src="' + ref + '" width=' + w + ' height=' + h + ' alt="' + name + '" border=0>')
		doc.write('</body></html>' );
		doc.close();
		window.status = name
	}
