// display the file

function displayjpg(image) {
	win = window.open('popwin.php?i='+image,'FullImage','toolbar=no,status=0,location=0,width=320,height=340');
	win.focus();
}

function displayartist(artist) {
	win = window.open('popwin.php?a='+artist,'FullImage','toolbar=no,status=0,location=0,scrollbars=1,width=320,height=340');
	win.focus();
	return(false);
}

// display the info
function displayinfo(ref,w,h) {
	win = window.open(ref,'FullInfo','toolbar=no,status=0,width='+w+',height='+h);
	win.focus();
	return(false);
}

