@URLOpen("javascript:openInNewWndow('http://www.google.com')")
Is that your actual code pasted in? because you missed the 'i' in openInNewWindow
Also, I'm not sure you can specify a height without specifying a width.
You might also investigate how @urlopen works, there shouldn't be any need to mix in javascript at all.
When a Notes browser triggers the @URLOpen function, it displays the retrieved Web page in a new window. When the @URLOpen function is used on a form or page that is accessed by a non-Notes browser, Domino generates a javascript window.open command with the following syntax:
window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
To display the retrieved Web page in a new window, pass the values for sName and sFeatures (if desired) as comma-separated arguments within the urlstring. For example,
@URLOpen("http://www.ibm.com','NEW")
Be sure to use double quotes at the beginning and end of the urlstring parameter, and single quotes before and after each comma separating the arguments to be passed to window.open. Do not include any spaces.
IBM Knowledge Center