okay, Scrubz:
The problem I have is not with your code, but rather code I'm using to open my Pop-up window. In conjunction with your code, this is the script I have between my <HEAD> tags:
Code:
<SCRIPT LANGUAGE="JavaScript">
function openWindow1 {
var popupWin = null;
popupWin = window.open('http://www.interfall.com/Franklin/BackToMain.html','BackToMain','width=400,height=375,resizable=no,menubar=no,toolbar=no,left=10,top=10,scrollbars=yes')
popupWin.opener.name="Main";
popupWin.focus();
}
</SCRIPT>
And this is the code I have for the link:
Code:
<a href="http://www.site.com" onClick="JavaScript:OpenWindow1()">
Any ideas? Any help would be greatly appreciated. I can't believe I've forgotten how to do this simple stuff in such a short time.
BTW, the exact error I'm getting is an 'object expected' error.
Remember, all the "java scripts" really are one word in my code.
Thanks again!
Bookmarks