function showpic(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;
var windowX = (screen.width/2)-(w/2);
var windowY = (screen.height/2)-(h/2);
		doc.open()
		doc.write('<html><head><title>' + name + 
				  '</title></head><body bgcolor=#eeeeee 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;
                win.moveTo(windowX,windowY)
	}
