function Pop(id,link,title,artist,var1,var2) {

img1=new Image();
img1.src = link;

text =  "<html>\n<head>\n<title>Painting Information</title><link rel='stylesheet' type='text/css' href='Style.css'>"

text += "<script language = 'javascript'></script></head>";
text += "<body style='background-color: #000000;' onBlur='javascript: this.close()' topmargin='20px' leftmargin='25px'><div align='left'><table border='0' cellpadding='0' cellspacing='0'>";
text += "<tr><td width='100%' height='15px'><a href='javascript: this.close()'><img name='img2' border='1' src="+img1.src+" style='border: 1px solid #FFA54D'></a></td></tr>";
text += "<tr><td width='100%' height='15px'></td></tr>";
text += "<tr><td width='100%' height='16px'><font color='#C00000'>Title: </font>"+title+"</td></tr>";
text += "<tr><td width='100%' height='16px'><font color='#C00000'>Artist: </font>"+artist+"</td></tr>";
text += "<tr><td width='100%' height='15px'></td></tr>";
text += "<tr><td width='100%' height='16px'><a href='javascript: this.close()'>Close Window</a></td></tr>";
text += "<tr><td width='100%' height='15px'></td></tr>";
text +="</table></div></body></html>";

var1 += 50;
var2 += 120;

newWindow = window.open('',id,'resizable = no width='+var1+'px, height='+var2+'px , top=25px, left=25px');
newWindow.document.open();
newWindow.document.write(text);
newWindow.document.close();

}
