<!-- Begin

//    window.parent.info.document.write( text )

function goThere( where )
{ 
//  window.location.replace( where );
    window.parent.location.replace( where );
}

function goBack( where )
{ 
    var browser;

    browser = ( navigator.appName.indexOf( "Microsoft" )!= -1 ) ? "MS" : "Foo";
//    browser = ( navigator.appName.indexOf( "Netscape" )!= -1 ) ? "Net" : browser;
//    browser = ( navigator.appName.indexOf( "Konqueror" )!= -1 ) ? "Kon" : browser;

//    alert( browser );      // Tell us what browser we found

    switch ( browser )
    {
        case "MS":
	    if ( window.history.length )
                window.history.go(-1);
            else
                goThere( where );

	    break;

//        case "Net":
//        case "Kon":
	default:
	    if ( window.history.length > 1 )
                window.history.go(-1);
            else
                goThere( where );
    }
}

//  End -->
