function doThePopUp(URL) {
        reWin=window.open(URL,'good','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=745,height=550,top=0,left=0')
        }
function expandIt(getIt) {
	if (getIt.style.display=="none") {
        	getIt.style.display="";
}
else {
	getIt.style.display="none";
        }
}

