Forum Moderators: open
<!--
function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "height=800, width=600, toolbar=no, menubar=no, location=no, scrollbars=yes, resizable=yes");
}
// -->
after reading one post and it doesn't work. Is there something I'm doing wrong? Is there another script I could be using. This is on a first page and then there's a link to open the web on a new page, but the toolbars don't disappear. I'm at a loss and I need to try to figure this out by tomorrow. Thanks :)
Just throw this part under your <body> tag:
<script language="JavaScript">
window.status='WHATEVER YOU WANT'
</script>
Then wherever you have your links use this line...(replace the Google stuff with your own location info)
<a href="#WHATEVER YOU WANT" onclick="window.open('http://www.google.com','nw','location=no,toolbar=1,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes')">Click here</a>