//用户输入的安全检查
function funcInputSafety(strTemp){
    if (strTemp.match(/'|"|=|\s|&|\$|@|\+|--|\(|\)|\/|\||\x5C|,|:|;|>|<|%|script/i)) {
	    return false;
	} else {
	    return true;
	}
}
