/**
 * @author bret
 */


/**
 * use local javascript method to call thickbox window
 */
function SWFDelegate(url,width,height,caption,file,price) {
   var objLink = document.createElement('a');
   var _w=800;
   var _h=600;
   if(typeof width != 'undefined') {
      objLink.setAttribute('width',width);
   }
   if(typeof height != 'undefined') {
      objLink.setAttribute('height',height);
   }
   var _u = url+'?caption='+caption+'&price='+price+'&file='+file+'&KeepThis=true&TB_iframe=true&height='+_h+'&width='+_w;
   objLink.setAttribute('href',_u);
   objLink.setAttribute('class','thickbox');
   objLink.setAttribute('title',caption);
   
   tb_init('a.thickbox');
   tb_show(caption,_u);
} // SWFDelegate