I'm not to sober at the mo, but have a look at this code:-
Code:
<html>
<head>
<script language="JavaScript" type="text/JavaScript">
function OpenBrowserWindow(YourURL,WindowName,TheFormat) {
window.open(YourURL,WindowName,TheFormat);
}
</script>
</head>
<body>
<a href="#" onClick="OpenBrowserWindow('index.php','newform','location=yes,status=yes,scrollbars=yes,resizable=yes')">Open</a>
</body>
</html>
Just insert the javascript into the head of the page where you want the popup to appear then insert the body contents into the page body (change the index.php to the page you want to popup).
This will then popup your 'form' page into a window without the back button on top (you can still right click and back though).
The back button won't show in the title bar of that page.
Edit - >>> the forum puts a space inbetween the location=*"yes" - take** that out <<<
Bookmarks