
var myfotopanel;

function init() {
  myfotopanel = new YAHOO.widget.Panel('fotopanel', 
  {visible:false, constraintoviewport:true, draggable:false, underlay:'none'} );
  myfotopanel.render();
}
YAHOO.util.Event.onDOMReady(init);

function show_fotopanel(img, text) {
  var bodyhtml = '<img src='+ img 
  + ' onClick="myfotopanel.hide();" onLoad="center_fotopanel();"'
  + ' id="bigimage"' + '>';
  if (text)
	bodyhtml += '<p id="footertext">'+ text +'</p>';
  myfotopanel.setBody(bodyhtml);
}

function center_fotopanel() {
    widthie6 = document.getElementById('bigimage').width + 12;
    myfotopanel.cfg.setProperty('width', widthie6 + 'px');
    myfotopanel.center();
    myfotopanel.show();
    }
