//////////////////////////////////////////////////////////////////////////////
//                                                                          //
//  Open Stadion                                                            //
//                                                                          //
//      Copyright (C) 2007,                                                 //
//        Karin Mientjes <km@karinmientjes.nl>                              //
//        Michiel Sikma <michiel@thingmajig.org>                            //
//                                                                          //
//////////////////////////////////////////////////////////////////////////////

// setHash function
//      Sets the hash value of a window's location.
//
// Synopsis:
//      setLocation(lc:String) : Boolean
//
// Parameters:
//      lc:String
//          The string to which to set the hash value of the window location.
//
// Returns:
//      Boolean.

function DISABLED_setHash(lc)
{
    window.location.hash = lc;
    return true;
};
