function showVideo(id){
	
	var etat;

	if(document.all){
		etat = document.all['voirvideo' + id].style.display;
		document.all['voirvideo' + id].style.display = etat == '' ? 'none' : '';
    }
    else if(document.getElementById){
    	etat = document.getElementById('voirvideo' + id).style.display;
		document.getElementById('voirvideo' + id).style.display = etat == '' ? 'none' : '';
    }
}


function redirect_site(obj, id, pos)
{
	obj.href="javascript:affi_abo(1, " + id + ", " + pos + ");";
}




/* style="position:absolute;" | position:absolute;top:0px;
*/
function affi_abo(num, idVideo, pos) {

positionTop = pos * 10;

var popup = '<div style="width:100%;height:100%;position:absolute;top:0px;"left:0px;background-color:black;filter:alpha(opacity=60);Moz-Opacity:0.6;opacity:0.6;"></div><table style="position:absolute;top:'+ positionTop +'px" width="100%" height="100%"  border="0" cellpadding="0" cellspacing="0">\
<tr>\
<td align="center" valign="middle">\
<table border="0" cellspacing="2" cellpadding="2">\
<tr><td>\
<iframe width="600" height="230"  src="http://www.partie-privee.com/popup_xa.php?idv=' + idVideo + '&amp;login=677099&amp;tca=pmax" scrolling="no" frameborder="0"></iframe><center><a href="javascript:affi_abo(0, ' + idVideo + ');">Voir une autre video</a></center></td>\
<td valign="top"><img src="{URL_IMAGE_6}" alt="{ALT_IMAGE_6}"  width="110" /></td>\
<td valign="top"><img src="{URL_IMAGE_7}" alt="{ALT_IMAGE_7}"  width="110" /></td>\
<td valign="top"><img src="{URL_IMAGE_8}" alt="{ALT_IMAGE_8}"  width="110" /></td>\
<td valign="top"><img src="{URL_IMAGE_9}" alt="{ALT_IMAGE_9}"  width="110" /></td>\
<td valign="top"><img src="{URL_IMAGE_10}" alt="{ALT_IMAGE_10}"  width="110" /></td>\
</td></tr>\
</table>\
</td>\
</tr>\
</table>';

	id = 'voirvideo' + idVideo;

	document.getElementById(id).innerHTML = popup;
	if(num == 0) {
	document.getElementById(id).style.display = 'none';

	} else {
	document.getElementById(id).style.display = 'block';
	}
}