function OpenSizedWindow( szWindowName,szDocToOpen,szWidth,szHeight ){ /* This
        function simply spawns a new window. The name that can be used to reference the window and the
        document that will be loaded
into

        it are passed asparameters.*/
		open(szDocToOpen,szWindowName,"width="+szWidth+",height="+szHeight+",status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes");      
}

