
/**
 * simple namespace wrapper for helpers and othersides
 */
 
var sx = {

    getClientSize : function()
    {
        if(window.innerHeight || window.innerWidth){
            return {w:window.innerWidth, h:window.innerHeight}
        }
        return {
            w:document.documentElement.clientWidth,
            h:document.documentElement.clientHeight
        }
    },

    initWebform : function(id)
    {
        $('#webforms-form-' + id + ' label.required').append('<span style="color:red">*</span>');
        $('#webforms-form-' + id + ' dt:last').html('<span style="font-size:0.8em; line-height:0.8em">Поля, помеченные звёздочкой, обязательны для заполнения</span>');
    }
};

