

<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;

// -->

function CreateWindow(url,windowName,pMenuBar,pToolbar,pStatusbar,pScrollbar,pResizable,pHeight,pWidth){
var objWindow = new Object;
var strWindow = new String();
var strProp = new String();
var strUrl = new String();
strProp = "menubar=" + pMenuBar;
strProp = strProp + ",toolbar=" + pToolbar;
strProp = strProp + ",statusbar=" + pStatusbar;
strProp = strProp + ",height=" + pHeight;
strProp = strProp + ",width=" + pWidth;
strProp = strProp + ",scrollbars=" + pScrollbar;
strProp = strProp + ",resizable=" +pResizable;
strUrl = url;	
objWindow=window.open(strUrl, windowName, strProp);
objWindow.focus();
}