function OpenWin1( url, width, height, options, name )
{
if ( ! width ) width = 710;
if ( ! height ) height = 500;
if ( ! options ) options =
"scrollbars=yes,menubar=yes,toolbar=no,location=no,status=no,resizable=yes";
if ( ! name ) name = "PersonalUseData";
var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
pageTracker._link(this.href);
}
