// home.js
// MDCOLE - 09/04/2001 - 


function OpenNewWindow(url,descr,winwidth,winheight) 
{
NewWindow = window.open(url,descr,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,scrollbars=auto,resizable=no,copyhistory=no,width='+winwidth+',height='+winheight);
}

function Windowclose()
{
parent.close()
window.close()
self.close()
}

