I have the following code in my HTML page:
<SCRIPT LANGUAGE="VBScript">
Function emailfriend()
window.open("EmailFriend.html", "Title", "width=450, height=450"
End Function
</SCRIPT>
<img src="images/icon-emailfriend.gif" width="56" height="55" border="0" alt="email page to a friend" onClick="emailfriend()">
This does not work for me and results in an error saying that the window module can't be found. Why is this?
Thanks
<SCRIPT LANGUAGE="VBScript">
Function emailfriend()
window.open("EmailFriend.html", "Title", "width=450, height=450"
End Function
</SCRIPT>
<img src="images/icon-emailfriend.gif" width="56" height="55" border="0" alt="email page to a friend" onClick="emailfriend()">
This does not work for me and results in an error saying that the window module can't be found. Why is this?
Thanks