<!--

function WindowOpen(file,wdt,hgt) {
if (window.cosWin) {
  if(!(cosWin.closed)) cosWin.close();
}
hgt=15+parseInt(hgt);
wdt=15+parseInt(wdt);
dims = "scrollbars,height=" + hgt + ",width=" + wdt;
file = "./"+ file;
CosWin = window.open(file,"COS",dims);
}

// -->
