|
This little bit of code can be useful: will trigger when a surfer clicks anywhere on the page (even blank space) stick it in the heading.
<script language="Javascript">
document.onclick = redirect;
function redirect(evt)
{
var xwin = window.open("http://www.yourpopup.com");
xwin.focus();
return true;
}
</script>
__________________
|