function popupBio(image,width,height) {
imagePrepended = "http://www.paulineart.com/images/bio/" + image;

// fully qualified URL needed for image to display in Opera ... i do not know why
// in addition, the width and height of the popup window are incorrect in Opera

text = "<HTML><head> <title>.:Pauline Seretakis:..Artist Photos</title>";
text += "<style type='text/css'><!--";
text += " BODY {";
text += "  margin: 0px; padding: 0px;";
text += " }";
text += " IMG.topleft {";
text += "  left: 0px;";
text += "  top: 0px;";
text += " }";
text += "//--></style>";
text += "</head>";
text += "<body marginleft='0' margintop='0' marginwidth='0' marginheight='0'>";
text += "<img src='" + imagePrepended + "' class='topleft' width='" + width + "' height='" + height + "'>";
text += "</body></html>";

attribs = "toolbar='no',location='no',directories='no',status='no',menubar='no',scrollbars='no',resizable='no',width=" + width + ",height=" + height + ",top=50,left=50";

newWindow = window.open('','newWin',attribs);
newWindow.document.write(text);
newWindow.document.close();
}