function exec_function(strFunctionName){
	if(eval('typeof('+strFunctionName+')==\'function\'')){
		eval(strFunctionName+'()');
	}
}

