function openPic(title,pic,width,height,left,top){
var newWindow=window.open("","newWindow","height="+height+",width="+width+",left="+left+",top="+top);
newWindow.document.write("<html><title>"+title+"</title><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' background="+pic+" style='background-repeat:no-repeat'>");
var bleft=width-50;
var btop=height-25;
newWindow.document.write('<div style="position:absolute; width:50px; height:50px; z-index:1; left: '+bleft+'px; top: '+btop+'px;"><input type="button" value="Close" onclick="window.close()"></div></body></html>');
}

