function popupImage(pathfile,name,width,height,title,artist,media,dim,price){
	winHeight = parseInt(height) + 85; // make room for text
	winWidth = parseInt(width) + 0; //make room for nutscape crappiness
	var newWin = window.open("",name,"resizable=no,status=no,width="+winWidth+",height="+winHeight+",scrollbars=no,top=40,left=40,toolbar=no,location=no,directories=no,status=no,menubar=no,alwaysRaised=yes,z-lock=yes");
	
	var buffer = '<html><head><title>Image Close-up </title><link rel="stylesheet" href="fonas.css" type="text/css"></head>';
	buffer = buffer + '<body leftMargin="0" topMargin="0" marginwidth="0" marginheight="0" border="0" bgcolor="FFFFFF">';
	buffer = buffer + '<div style="position:absolute; top:0; left:0">';
	buffer = buffer + '<img src="'+pathfile+'" height="'+height+'" width="'+width+'">';
	buffer = buffer + '<p class ="popup" align="center"><b>"'+title+'"</b>';
        buffer = buffer + '<br>'+artist+'';
	buffer = buffer + '<br>'+media+''; 
	buffer = buffer + '<br>'+dim+'';
	buffer = buffer + '<br><b>'+price+'</b>'; 
	buffer = buffer + '</div>';
	buffer = buffer + '</body></html>';

	newWin.document.open();
	newWin.document.write(buffer);
	newWin.document.close();

	newWin.focus();
	return false;
}

function jl_openWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

