function styleUtils(s_objname_fp) {
	/*						"CONSTANTS"						*/
	var KEY_GETBYID = 'getElementById';
	var KEY_INNERHTML = 'innerHTML';
	var KEY_SRC = 'src';
	var KEY_STYLE = 'style';
	
	
	/*						PRIVATE VARS						*/
	var s_objname;
	
	
	/*						PUB METHOD POINTERS						*/
	this.doElementContent = doElementContent;
	this.doElementSource = doElementSource;
	this.doElementStyle = doElementStyle;
	this.outInlineCSSProperty = outInlineCSSProperty;
	
	
	/*						"CONSTRUCTOR"						*/
	setCallback(s_objname_fp)
	
	
	/*						PUB METHODS						*/
	function doElementContent(s_id_fp,s_value_fp) {
		document[KEY_GETBYID](s_id_fp)[KEY_INNERHTML] = s_value_fp;
	}
	
	function doElementSource(s_id_fp,s_value_fp) {
		document[KEY_GETBYID](s_id_fp)[KEY_SRC] = s_value_fp;
	}
	
	function doElementStyle(s_id_fp,s_attribute_fp,s_value_fp) {
		document[KEY_GETBYID](s_id_fp)[KEY_STYLE][s_attribute_fp] = s_value_fp;
	}
	
	function outInlineCSSProperty(s_id_fp,s_attribute_fp) {
		return document[KEY_GETBYID](s_id_fp)[s_attribute_fp];
	}
	
	
	/*						PRIV METHODS						*/
	function setCallback(s_objname_fp) {
        s_objname = s_objname_fp;
    }
}