function openBF(picture, title) {
	NewWindow=window.open("picture","picture", "height=480, width=640");
	NewWindow.document.write("<html><head><title>");
	NewWindow.document.write(title);
	NewWindow.document.write("</title><style type='text/css'>body { margin-top:0px; margin-left:0px; margin-right:0px; margin-bottom:0px; }</style></head><body><img src=' ");
	NewWindow.document.write(picture);
	NewWindow.document.write("'>");
	NewWindow.document.write("</body></html>");
	NewWindow.document.close();
}

function MM_preloadImages() {
  var d=document;
  if(d.images) {
  	if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
    for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0) {
        	d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];
        }
  }
}