// JavaScript Document

// ============================================================== Test Flag Disclaimer

function TestFlag(variable)
	{
	cook = document.cookie;
	variable += "=";
	place = cook.indexOf(variable,0);
	if (place <= -1)
		return("0");
	else
		{
		end = cook.indexOf(";",place)
		if (end <= -1)
			return(unescape(cook.substring(place+variable.length,cook.length)));
		else
			return(unescape(cook.substring(place+variable.length,end)));
		}
	}

function SetCookie(nom,valeur,permanent)
	{
	if(permanent)
		{
		dateExp = new Date(2012,12,12);
		dateExp = dateExp.toGMTString();
		ifpermanent = '; expires=' + dateExp + ';';
		}
	else
		ifpermanent = '';
	document.cookie = nom + '=' + escape(valeur) + ifpermanent;
	}

if(TestFlag("popok")==0)
	{
	var msg="ATTENTION : SITE PORNOGRAPHIQUE RESERVE AUX ADULTES DE PLUS DE 18 ANS\n\nCe site Internet est réservé à un public majeur et averti et est conforme\nà toutes les règlementations françaises en vigueur. Il contient des textes,\ndes photos et des vidéos classées X qui peuvent être choquantes pour\ncertaines sensibilités. \n\nCLIQUEZ SUR OK POUR CONTINUER, ANNULER POUR QUITTER.\n\n";
   if(!confirm(msg)){window.top.popup=0;window.top.location.replace("http://www.buzzado.com");}
	SetCookie("popok","oui",false)
	}


// ============================================================== Ajout en Favoris

function favoris(title,url){ 
if( document.all){ 
window.external.AddFavorite(url, title); 
} 
else if( window.sidebar){ 
window.sidebar.addPanel(title, url, "") 
} 
}

// ============================================================== Préchargement

var chemin = "img2/";
var ext = ".gif";
var liste_images = new Array('hdr03b','hdr04b','hdr05b','hdr0b');

document.image_chargee = new Array();
function prechargement() {
for ( i = 0; i < liste_images.length; i++ ) {
document.image_chargee[i] = new Image;
document.image_chargee[i].src = chemin + liste_images[i] + ext;
}
}


// ============================================================== Affiche Vidéo

function video(id){
url = 'http://www.sexedenfer.com/infos.php?id=' + id + '&wref=223&tpl=planbext#haut';
winwidth = screen.availWidth - 10;
winheight = screen.availHeight - 30;
window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, resizable');
}


function acc(id){
url = 'http://www.sexedenfer.com/infos.php?id=' + id + '&wref=223&tpl=plan2acc#haut';
winwidth = screen.availWidth - 10;
winheight = screen.availHeight - 30;
window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, resizable');
}

// ============================================================== Affiche Vidéo BAZOOCASH

function newpop(id){
url = 'http://mb.cinehard.com/infos.php?id=' + id + '&aff=81&mb=planeteb&cat=beurette';
winwidth = screen.availWidth - 10;
winheight = screen.availHeight - 30;
window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, resizable');
}

// ============================================================== Anchor external

function relTags() 
{
	if (document.getElementsByTagName) 
	{
		var anchors = document.getElementsByTagName( "a" );
		for (var loop = 0; loop < anchors.length; loop++) 
		{
			var anchor = anchors[loop];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") 
			{
				anchor.target = "_blank";
			}
		}
	}
}	

window.onload = function() 
{
	relTags();
}