// JavaScript Document
<script language="JavaScript" src="standard.js" type="text/javascript">
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
 {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else
 {document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
//
function open_new_window(url)
{ 
new_window = window.open(url,'window_name','toolbar=1,menubar=1,resizable=1,dependent=0,status=1,width=750,height=800,left=25,top=25')
}
// New window attributes
// url - the variable for the url of the page in the new window
// that is passed by placing it single-quoted in either the link or form
// window_name - the name of the new window being opened
// width - width of the new window in pixels
// height - height of the new window in pixels
// top - the new widow top will appear xx number of pixels from the top of the screen
// left - the new widow left margin will appear xx number of pixels from the left of the screen

// The following attributes will suppress the respective window elements
// when the value is set to zero or if omitted. When listed or equal to one
// the window attribute will appear
// toolbar,menubar,resizable,dependent,status
// Example of code
// <a href="javascript:open_new_window('http://www.yahoo.com');">Hyperlink</a>
</script>