//************************************************************************//
//   QShop E-Commerce Solutions                                           //
//   Copyright @ VISUAL TECHNOLOGIES INC  2002-2007                       //
//   http://qshop.com.pl qshop@qshop.com.pl                               //
//************************************************************************//
//   This software is copyrighted, do not attempt to copy                 //
//   without permission                                                   //
//************************************************************************//
function eregi_search(chaine,find) {
	var norm = new RegExp( find );
	return norm.exec( chaine )!=null;
}
function check_search(obj)
{
	ElementID_s = obj.target?obj.target.id:obj.srcElement.id; 
	val = GE(ElementID_s).value;
	if(eregi_search( val , "[\<\>\|\'\"\;]" )==true) {
		GE(ElementID_s).value="";
		secomm();
	}
}

