// JScript source code
// ***********************************************************************************
// Class Name: commonFunctions.js
// Desc      : This javascript consists with functions use through out BloodSource.org
//             See each function comments for more info. on each usages.
// Author    : Peter Puth
// Date      : 04/21/2009
// ***********************************************************************************
// ISSR         Date    Staff   Desc
// ***********************************************************************************
// IS099150 04/21/2009  PPP     Created
// ***********************************************************************************

//Redirect user to the correct url.
function redirectORG ()
{
    if (document.location.href != "http://www.bloodsource.org" && document.location.href != "http://www.bloodsource.org/")
    { 
        document.location.href ="http://www.bloodsource.org";
    }
}
