Got everything set except dont' know where to put the no scrollbar (scrollbars=0 or scrollbars=no) command.
<html>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Eric King (eric_andrew_king@hotmail.com) -->
<!-- Web Site: [url]http://redrival.com/eak/[/url] -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! [url]http://javascript.internet.com[/url] -->
<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End -->
</script>
</HEAD>
<body>
<a href="http://mydomain.com/tour/master.htm" onclick="NewWindow(this.href,'name','550','400','yes');return false;">Site Name Flash Tour<br>
<IMG SRC="http://mydomain.com/tour/getFlash.gif" border="0"></a>
</body>
</html>
Can someone please explain?
Thank you.