1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <?php
echo 'document.write("<DIV ID=\"pub\" STYLE=\"position:fixed;top:0;left:0;z-index:0\"></DIV>");
function showsup()
{
if(document.getElementById)
{
document.getElementById(\'pub\').style.width = largeur;
document.getElementById(\'pub\').style.height = hauteur;
document.getElementById(\'pub\').innerHTML = code;
}
}
function closeSup()
{
if(document.getElementById)
{
document.getElementById(\'pub\').style.width = 1;
document.getElementById(\'pub\').style.height = 1;
document.getElementById(\'pub\').innerHTML = \'\';
}
}
if(!document.all && document.getElementById){
hauteur = window.innerHeight;
largeur = window.innerWidth;
}
else {
hauteur = document.body.clientHeight;
largeur = document.body.clientWidth;
}
code = "<TABLE border=0 WIDTH="+largeur+" HEIGHT="+hauteur+"><TR><TD VALIGN=top ALIGN=left>";
code += "<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>";
code += "<TR><TD bgcolor=#000000 width=300 height=20><div align=left><FONT color=#ffffff size=1><b><a style=color:#FFFFFF href=http://www.monsite.fr target=_blank>Mon site</a></b></font></div></TD>";
code += "<TD width=300 bgcolor=#000000><div align=right><FONT color=#ffffff size=1><b><a style=color:#FFFFFF href=http://www.monsite.fr/adclic.php?idpub=701&pseudo=test target=_blank>Ouvrir le site</a> <a style=color:#FFFFFF href=# onClick=closeSup()>Fermer</a></div></TR>";
code += "<TR>";
code += "<TD colspan=2><iframe width=600 height=400 src=http://www.sitetest.com></iframe></TD>";
code += "</TR>";
code += "</TABLE>";
code += "</TD></TR></TABLE>";
window.onload = showsup;';
?> |
Partager