// JavaScript Document

// ============================================================== Window en top location

if (window!= top)
top.location.href=location.href


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

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

// ============================================================== Photos

function photo(id){
url = 'photo' + id + '.html';
winwidth = 570;
winheight = 400;
window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, no-resize');
}


// ============================================================== Affiche template vidéos

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

