/*
on (release) {
getURL("javascript:flashlf('http://www.google.com/','840','440','Title')");
}
*/

function flashlf(url,width,height,ftitle) {

   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lf');
   objLink.setAttribute('rev','width:'+width+';height:'+height+';')
   objLink.setAttribute('title',ftitle);
   myLytebox.start(objLink, false, true);
}

/* 
on (release) {
getURL("javascript:flashlx('images/full/image1.jpg','Title')");
}
*/

function flashlx(url,ftitle) {
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lx');
   objLink.setAttribute('title',ftitle);
   myLytebox.start(objLink, false, false);
}

/*
on (release) {
getURL("javascript:lytegroup('images/full/image1.jpg','Title','Groupname')");
}
*/

function flashls(url,ftitle,igroupname) {
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','ls[' + igroupname+ ']');
   objLink.setAttribute('title',ftitle);
   myLytebox.start(objLink, false, true);
   
}
/*
on (release) {
	getURL("javascript:flashlx('/images/full/tarbes.jpg','<a href=\"http://www.google.com/\" target=\"_blank\" >google.com</a>')");
}
The ( \ ) avant les ( " ) dans le url
*/

/* For image map */

/* 
<map name="Map" id="Map">
    <area shape="circle" coords="136,136,36" href="javascript:flashlf('/linkeo/googlemap/','840','440','Plan')" />
    <area shape="rectangle" coords="136,136,36,66" href="javascript:flashlf('/popup/pop.htm','460','390','Rappel imm&eacute;diat et gratuit')" />
 </map> */