Vinicius Muniz (taghost.com.br)
By: a guest | Mar 12th, 2010 | Syntax:
JavaScript | Size: 0.35 KB | Hits: 44 | Expires: Never
echo '<script>
if(window.addEventListener)
{
window.addEventListener("unload", function() {
window.open("http://google.com.br", "", width="200", height="50", scrollbars = "no"); }, false);
}
else
{
window.attachEvent("onUnload", function() {
window.open("http://google.com.br", "", width="200", height="50", scrollbars = "no"); });
}
</script>';