function callFancy(href, caption) {
   var objLink = document.createElement('a');
   objLink.setAttribute('href',href);
   if(typeof caption != 'undefined') {
      objLink.setAttribute('title', caption);
   }
   $(objLink).fancybox();
   $(objLink).trigger('click');
}

function callFancyGroup(objid) {
	var obj = document.getElementById(objid);
	$(obj).trigger('click');
}
