<!-- Begin

//    window.parent.info.document.write( text )

function goPage( where )
{ 
//    window.parent.location.href = where;
    window.parent.location = where;
}

function goThere( where )
{ 
    window.parent.location.replace( where );
}

function goBack( where )
{ 
    var browser;

    if ( typeof window.parent.links == "undefined" ) 
	goThere( where );

    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 );

    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 )
            {
//		alert( "History: " + window.history.length );

		window.history.go(-1);
            }
	    else
                goThere( where );
    }

//    goThere( where );
}

//  End -->
