function OpenNewWindow(url,winheight,winwidth,imgheight,imgwidth)
{
NewWindow=window.open(url,'art','resizable,scrollbars,width='+winwidth+',height='+winheight);var msg='<HTML><HEAD><TITLE> </TITLE></HEAD><BODY style="color:black;background-color:white;scrollbar-3dlight-color:white;scrollbar-arrow-color:black;scrollbar-base-color:white;scrollbar-darkshadow-color:black;scrollbar-face-color:white;scrollbar-highlight-color:black;scrollbar-shadow-color:black;scrollbar-track-color:white;">'
msg+='<DIV style="margin:0px;padding:0px;position:absolute;left:0px;top:0px;">'
msg+='<IMG src="'
msg+=url
msg+='" height="'
msg+=imgheight
msg+='" width="'
msg+=imgwidth
msg+='"></DIV><BR clear="all"></BODY></HTML>'
// onclick="Javascript:OpenNewWindow('fanart/.jpg','400','','','');return false;"
NewWindow.document.write(msg)
}