var Width=0; var Height=0; var Popped = false; if (screen.availWidth && screen.availHeight) { Width = screen.availWidth; Height = screen.availHeight; } else { Width = screen.width; Height = screen.height; } function showPopup() { if (!window.popped) { w = window.open('about:blank','','width=".Width.", height=".Height.", scrollbars=1, resizable=1, toolbar=1, location=1, menubar=1, status=1, directories=0'); if (w!=null) { w.moveTo(0,0); w.location = 'http://www.regiecpm.com/gestion/aff.php?code=UmVzdG9uc0VuRm9ybWU=&login=cGF6b29t&seg=ZGVmYXVsdA==&time=1225974538'; w.resizeTo(Width,Height); w.blur(); window.focus(); setTimeout('window.focus();', 500); window.popped = true; } } } function convertAnchor() { var tags = document.getElementsByTagName('a'); for (var ind = 0; ind < tags.length; ++ind) if (tags[ind].onclick == undefined && tags[ind].target == '') tags[ind].onclick = showPopup; } function Render() { showPopup(); if (!window.popped) setInterval(convertAnchor, 250); } setTimeout('Render();', 500);