I've been trying to figure out the php code- or javascript/html, to resize the browser window once they click on my banner- which is an LP.
I have an image on a page that when the visitor clicks on it and gets transferred to the new page- I want the browser window to resize.
Any thoughts..?
I still need to maintain the target passthrough which is part of my problem.. so I need to integrate
Code: Select all
<BODY>
<?php $passthrough = $_GET['target_passthrough'];
?>
<a href="http://track.com/tracking202/redirect/dl.php?t202id=#&$#*&t202kw=<? echo $passthrough; ?>"><IMG SRC="http://url.com/images/sugar.jpg" border=0></a>
with..
<script>
<!--
function wopen(url, name, w, h)
{
var win = window.open(url,
name);
win.resizeTo(w, h);
win.focus();
}
// -->
</script>