
function LaunchBox( tSite, tFrameName, tWidth, tHeight ) {
         navWindow=window.open( tSite, tFrameName, "scrollbars=yes,status=no,toolbar=yes,location=no,menubar=yes,resizable=yes,directories=no,width=" + tWidth + ",height=" + tHeight ); 
	 navWindow.resizeTo(tWidth,tHeight)
         navWindow.focus();
         //navWindow.moveTo(0,0);
        }

function LaunchBoxJr( tSite, tFrameName, tWidth, tHeight ) {
         navWindow=window.open( tSite, tFrameName, "scrollbars=yes,status=no,toolbar=no,location=no,menubar=no,resizable=yes,directories=no,width="+tWidth+",height="+tHeight+"");
	 navWindow.resizeTo(tWidth,tHeight)
         navWindow.focus();
         //navWindow.moveTo(0,0);
        }