function loadtodiv(div,url) {
	$(div).innerHTML = '';
	var pars = 'foo=true';	
	var myAjax = new Ajax.Updater(div,url,{ method: 'get',parameters: pars,evalScripts: true});
}

function SWFDelegate(url,width,height,caption) {
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lightbox');
   objLink.setAttribute('title',caption);
   if(typeof width != 'undefined') {
      objLink.setAttribute('width',width);
   }
   if(typeof height != 'undefined') {
      objLink.setAttribute('height',height);
   }
   Lightbox.prototype.start(objLink);
}

function GroupDelegate(id) {
   var objLink = document.getElementById(id);
   objLink.setAttribute('width',640);
   objLink.setAttribute('height',480);  
   Lightbox.prototype.start(objLink);
}