<!--
function OpenWindow( url, width, height, options, name )
       {
       if ( ! width ) width = 265;
       if ( ! height ) height = 180;
       if ( ! options ) options = "scrollbars=yes,menubar=no,toolbar=no,location=no,status=no,resizable=no";
       if ( ! name ) name = "OpenWindow";
var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
       }
	   
function resizeWin(newLoc, newWidth, newHeight) {
        newWin = open("",newLoc,"scrollbars=yes,margin=0,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
}	   
// -->
