
YAHOO.namespace ('threadscore.image');


YAHOO.threadscore.image.LightBoxImage = function (img,filename) {
 
YAHOO.threadscore.image.LightBoxPanel = new YAHOO.widget.Panel("panel1", {
	width:"820px", 
      height:"620px",
	constraintoviewport: true, 
      zindex: 4,
	              fixedcenter:true,  
	close:true, 
	visible:false, 
      draggable:false,
      modal: true} );
YAHOO.threadscore.image.LightBoxPanel.setHeader("");
var body='<div style="align:center; text-align: center; width=800px; height=600px;"><img src="/dimage/'+img+'/800/600/'+filename+'" align="center" /></div>';

YAHOO.threadscore.image.LightBoxPanel.setBody(body);
YAHOO.threadscore.image.LightBoxPanel.render("bd"); 
YAHOO.threadscore.image.LightBoxPanel.show(); 
}

