//////////////////////////////////////////////////////////////////////////////
//                                                                          //
//  DC website                                                              //
//                                                                          //
//      Copyright (C) 2006-2007, Design Center <info@dcworks.nl>            //
//                                                                          //
//////////////////////////////////////////////////////////////////////////////

// setLocation 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 setLocation(lc)
{
    window.location.hash = lc;
    return true;
};