function
containSpecial( s ) {
var
str =
"[@/'\"#$%&^*]+"
;
reg =
new
RegExp(str);
return
(reg.test(s) );
}