function CH_SwitchSubscribeButton () {
    var buttonTextHandler = document.getElementById( "subscribeButton" );
    if(buttonTextHandler.value == languageSubscribe)
        buttonTextHandler.value = languageUnsubscribe;
    else
        buttonTextHandler.value = languageSubscribe;
}
