﻿/*
var url = window.location.search;
var e = url.indexOf('%20And%20');
var e1 = url.indexOf("'"); 
if(e!=-1||e1!=-1)
{
	window.location.href = 'http://www.snpemc.com/error1.htm';
}

*/
 var url = location.search.toLowerCase();
 var re=/^\?(.*)(select%20|insert%20|delete%20from%20|count\(|drop%20table|update%20truncate%20|asc\(|mid\(|char\(|xp_cmdshell|exec%20master|net%20localgroup%20administrators|\"|:|net%20user|\''|%20or%20|%20and%20|\')(.*)$/gi;
 var e = re.test(url);
 if(e) {
		window.location.href='http://www.snpemc.com/error1.htm';
		}
