/*

Pour caller un popup de contenu dans une page, exemple : 

<a href="detail.php" title="Remorque : 5199TGS" onclick="return ajaxPop(this,645,504);"><img src="thumb_img/GV6399TG.jpg" /></a>

Param #1 = this, retourne le lien et le titre à ajouter en haut du popup (ne pas oublier de mettre un title au <a>)
Param #2 = width du popup
Param #3 = height du popup

*/
var ajaxPop = function(elm,w,h) {
	Lightview.show({href: elm.href, rel: 'ajax', title: elm.title, options: { width: w, height: h }});
	return false;	
}

