function ExtWin(strURL, wSz, h, eScroll){
var  mWindow , sWProps
// cwc 8-1-02 sWProps="width=" + wSz + ",height=" + h + ",scrollbars=" + eScroll + ",menubar=no,toolbar=no,location=no,status=no,resizable=yes";
sWProps="width=" + wSz + ",height=" + h + ",scrollbars=" + eScroll + ",menubar=no,toolbar=no,location=no,status=no,resizable=no";
//sWProps="width=300,height=400,scrollbars=0,menubar=0,toolbar=0,location=0,status=0,resizable=1";

mWindow = window.open(strURL,'MoreInfo', sWProps);
//mWindow = window.open(strURL,'MoreInfo','width=400,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no,status=no,resizable=yes');
}

function CloseWin(){
this.close();
}

function ReSizeWin(intWid,intHt){
	this.resizeTo(intHt,intWid);
}

function ReSizeReLoadWin(strURL,intWid,intHt){
	this.resizeTo(intHt,intWid);
	this.location=strURL;
}