Error in IE Could not complete the operation due to error 80

The online demo gives me this error message in the Subject.

[url]http://it.cdcgra.webege.com/[/url]

The error happens only in Internet Explorer but works fine in Firefox.
The error log of IE is included below:

If you check the source the files load via body onload function so I am not sure where it is going worng. Please help

In case code is required here is the complete index.html source code


<html>
<head>
<title>CDC Bangalore IT Inventory</title>

<META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">

<script src="codebase/dhtmlxcontainer.js"></script>
<script src="codebase/dhtmlxcommon.js"></script>


<link rel="stylesheet" type="text/css" href="codebase/dhtmlxwindows.css">
<link rel="stylesheet" type="text/css" href="codebase/skins/dhtmlxwindows_dhx_blue.css">
<script src="codebase/dhtmlxwindows.js"></script>

<link rel="stylesheet" type="text/css" href="codebase/dhtmlxlayout.css">
<link rel="stylesheet" type="text/css" href="codebase/skins/dhtmlxlayout_dhx_blue.css">
<script src="codebase/dhtmlxlayout.js"></script>

<script src="codebase/dhtmlxgrid.js" type="text/javascript"></script>
<script src="codebase/dhtmlxgridcell.js" type="text/javascript"></script>
<script  src="codebase/excells/dhtmlxgrid_excell_dhxcalendar.js"></script>
<link rel="STYLESHEET" type="text/css" href="codebase/dhtmlxgrid.css">
<link rel="stylesheet" type="text/css" href="codebase/skins/dhtmlxgrid_dhx_blue.css">


<script language="JavaScript">
<!--
var dhxLayout,dhxWin,mygrid;
function doOnLoad() {
	dhxLayout = new dhtmlXLayoutObject(document.body, "2E","dhx_blue");
	dhxLayout.cells("a").setText("Data Center");
	dhxLayout.cells("b").setText("Administrator Panel");
	dhxLayout.cells("b").attachURL("cp.php", true);
	dhxLayout.cells("a").setHeight(450);
	mygrid = dhxLayout.cells("a").attachGrid();
	mygrid.setImagePath("codebase/imgs/");
    mygrid.setHeader("Emp ID,Emp Name,Laptop,Desktop");
	mygrid.setColTypes("ro,ro,ro,ro");//set column types
	mygrid.setColAlign("left,left,center,center");
	mygrid.setColSorting("str,str,str,str");
    mygrid.setInitWidths("100,150,200,*");
    mygrid.setSkin("light");
    mygrid.init();

};

function datamw()
{
	dhxWin = new dhtmlXWindows();
	dhxWin.setSkin("dhx_blue");
	win = dhxWin.createWindow("dataw",10,10,600,500);
	win.button("park").hide();
	win.center();
	win.setModal(true);
	win.allowMove();
	win.setText("Edit Hardware Inventory");
	win.attachURL("datamgr.php");
	win.bringToTop();
	
};
function about()
{
	dhxWin = new dhtmlXWindows();
	dhxWin.setSkin("dhx_blue");
	win = dhxWin.createWindow("aboutw",10,10,550,300);
	win.button("minmax1").hide();
	win.button("park").hide();
	win.center();
	win.setModal(true);
	win.allowMove();
	win.setText("About IT Inventory");
	win.attachURL("help.html");
	win.bringToTop();
	
};
function fp()
{
	dhxWin = new dhtmlXWindows();
	dhxWin.setSkin("dhx_blue");
	win = dhxWin.createWindow("fpw",10,10,420,200);
	win.button("minmax1").hide();
	win.button("park").hide();
	win.center();
	win.setModal(true);
	win.allowMove();
	win.setText("Reset Password");
	win.attachURL("rp.php");
	win.bringToTop();
	
};
-->
</script>
</head>

<body onLoad="doOnLoad()">

</body>
</html>

Ooops I found it. Lots of silly mistakes by me. Pls ignore this thread