home *** CD-ROM | disk | FTP | other *** search
Wrap
<html> <head> <title>COALESYS, Inc.</title> <style> <%StyleSheet%> </style> <script language="JavaScript" type="text/javascript"> <%JavaScript%> // Function which shows the Context Menu by calling // cswmShow and passing in coordinates. function ShowContextMenu(e) { // Quick and Dirty IE NN 6.1 Detection if(document.oncontextmenu) { // IE if(document.all) cswmShow('File', '', 'above', event.x + document.body.scrollLeft, event.y + document.body.scrollTop, 1); // NN 6.1 else cswmShow('File', '', 'above', e.pageX, e.pageY, 1); return false; } // Quick and Dirty NN4 Detection else if (document.layers) { if (e.which == 3) { cswmShow('File', '', 'above', e.pageX, e.pageY, 1); return false; } } // Quick and Dirty NN6.0 Detection else if (document.getElementById) { if (e.which == 3) { e.preventDefault(); cswmShow('File', '', 'above', e.pageX, e.pageY, 1); return false; } } } // capture event for context menu // Quick and Dirty NN4 Detection if(document.layers) { document.captureEvents(Event.MOUSEDOWN); document.onmousedown=ShowContextMenu; } // Quick and Dirty IE Detection else if(typeof document.oncontextmenu == "object") { document.oncontextmenu = ShowContextMenu; } // Quick and Dirty NN6 Detection else if(!document.all && document.getElementById) { // NN 6.1 requires different handling than 6.0 if(parseFloat(navigator.vendorSub)>=6.1) document.oncontextmenu=ShowContextMenu; else document.onmouseup=ShowContextMenu; } </script> </head> <body onResize="<%OnResizeEvent%>" scroll="auto" link="red" alink="red" vlink="red" bgcolor="#ffffff" leftmargin=10 topmargin=10 marginheight=10 marginwidth=10> <%WebMenu%> <table> <tr> <td>Right click on page.</td> </tr> </table> <table height="90%"> <tr> <td height="90%"></td> </tr> <tr> <td align="center"><span style="color:#808080; font-size:13px">The Preview Window is loading it's HTML from the Netmenu.wmt file, which is why there is not a buttonbar and right-click ability is enabed. To learn more about Live Preview templates, please see the documentation under "Using WebMenu Studio - Advanced Topics".</span></td> </tr> </table> </body> </html>