 function OpenWindow( url, width, height, options, name )

             {

             if ( ! width ) width = 500;

             if ( ! height ) height = 500;

             if ( ! options ) options =
"scrollbars=yes,menubar=no,toolbar=no,location=now,status=yes,resizable=yes";

             if ( ! name ) name = "outsideSiteWindow";



             var newWin = window.open( url, name, "width=" + width +
",height=" + height + "," + options );

             } 

