document.write('');
function setcookie(name, value, expirationInDays) {
if (expirationInDays) {
var date = new Date()
date.setTime(date.getTime() + (expirationInDays * 24 * 60 * 60 * 1000))
var expires = "; expires=" + date.toGMTString()
} else {
var expires = ""
}
document.cookie = name + "=" + value + expires + "; path=/"
}
function getcookie(name) {
var namePattern = name + "="
var cookies = document.cookie.split(';')
for(var i = 0, n = cookies.length; i < n; i++) {
var c = cookies[i]
while (c.charAt(0) == ' ') c = c.substring(1, c.length)
if (c.indexOf(namePattern) == 0)
return c.substring(namePattern.length, c.length)
}
return null
}
function pop_up()
{
if(document.location.href)
{
if(document.location.href.search(/bloguez.com/) == -1 && document.location.href.search(/compteur.cc/) == -1)
{
items = document.getElementsByTagName('a');
document.body.onclick = ouvre;
for(var i=0; i');