@Urlopen And Javascript To Open New Browser Window
To open a new browser window using @URLOpen and Javascript.
This code will open a new browser window and show the browser's toolbar,
directories, menubar, scrollbar, and make the window resizable. The browser
window will be the 400 by 600 in size.
In the $$HTMLHead
"<script language=\"Javascript\"> function
openNewWindow(fileName,theWidth,theHeight) {
window.open(fileName,\"Details\",\"toolbar=1,location=1,directories=1,status=1,m
enubar=1,scrollbars=1,resizable=1,width=\"+theWidth+\",height=\"+theHeight) }
</script> "
In the action hotspot.
@URLOpen("JavaScript:openNewWindow(\'http://www.lotus.com\',400,600)")