Hi guys,
I have a script which processes some data then makes use of the following header function:
header ("Location: cart.php");
In the cart.php page i have the following javascript:
<script language="JavaScript1.2">
<!--
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>
This does open the cart.php page full screen but how do i get it to only show the browser title bar and nothing else.
Cheers,
micmac