function $(id){
	return document.getElementById(id);
};
function trim(s){
	return s.replace(/(^\s*)|(\s*$)/gi, '');
};
function init_more_css(){
	$('name').value='xincent';
	var s = '<style type="text/css">';
	s += 'body{text-align:-moz-center!important;}';
	s += 'body,table,td{word-wrap:break-word;}';
	s += '.text_left{text-align:-moz-left!important;}';
	s += '.float_left{float:left;}';
	s += '.float_right{float:right;}';
	s += '</style>';
	document.write(s);
};
