function check(inputStr) {
   var isthrow=true;
   if (typeof(inputStr) != "string") { return inputStr; }
   var tmpValue = inputStr;
   if(tmpValue.indexOf("=") > -1)
   {
		 isthrow=false;
   }
   if(tmpValue.indexOf("?")>-1)
   {
         isthrow=false;
   }
   if(tmpValue.indexOf("<")>-1)
   {
         isthrow=false;
   }
   if(tmpValue.indexOf(">")>-1)
   {
         isthrow=false;
   }
   if(tmpValue.indexOf("+")>-1)
   {
         isthrow=false;
   }
   return isthrow;
}

