// Project: arc-inc
// Author: Levchenko Natalia
// Validation of form input.
// Following verifications implemented: excision of words 'and', 'or', 'not' from input - ffunc1();
// preventing of using of forbidden words drop, create, alter, database, index, table, grant, update and alerting in case of empty string - func();

function ffunc1(a)
{
var v1, v2, v3;
v1 =  / and /;
v12 = ' ';
v2 = / or /;
v3 = / not /;
var c;
while((a.match(v1))||(a.match(v2))||(a.match(v3)))
{
c = a.replace(v1,v12);
a = c;
c = a.replace(v2,v12);
a = c;
c = a.replace(v3,v12);
if((navigator.appName=="Microsoft Internet Explorer")||(navigator.appName=="Opera"))
{document.all.keywords.value = c;}
else{f1 = document.getElementById("keywords");
f1.value = c;}
}
//alert(c);
} 

function func()
{
var nav;
var v1, v2, v3;
v1 =  / and /;
v12 = ' ';
v2 = / or /;
v3 = / not /;


if(browser.isIE||browser.isOpera) {
d = document.all.keywords.value;

if(d.match('drop ')||d.match(' drop')||d.match('drop')||d.match(' drop ')||d.match('create')||d.match('create ')||d.match(' create')||d.match(' create ')||d.match('alter')||d.match('alter ')||d.match(' alter')||d.match(' alter ')||d.match('delete')||d.match('delete ')||d.match(' delete')||d.match(' delete ')||d.match('database')||d.match(' database ')||d.match('database ')||d.match(' database')||d.match('table')||d.match('table ')||d.match(' table')||d.match(' table ')||d.match('index')||d.match(' index ')||d.match('index ')||d.match(' index')||d.match('grant')||d.match(' grant ')||d.match('grant ')||d.match(' grant')||d.match('update')||d.match('update ')||d.match(' update')||d.match(' update '))
{
document.all.keywords.value='';
alert("Слова drop, create, alter, database, index, table, grant, не дозволяються!")
document.all.keywords.focus();
}

else{
if(d.length<3) {
alert("Введіть критерій пошуку!");
document.all.keywords.value='';
document.all.keywords.focus();
}
else {
ffunc1(d);

document.sform.submit();}
}
}
if (browser.isNS)
{
f = document.forms[0].elements[0];
d = f.value;
if(d.match('drop ')||d.match(' drop')||d.match('drop')||d.match(' drop ')||d.match('create')||d.match('create ')||d.match(' create')||d.match(' create ')||d.match('alter')||d.match('alter ')||d.match(' alter')||d.match(' alter ')||d.match('delete')||d.match('delete ')||d.match(' delete')||d.match(' delete ')||d.match('database')||d.match(' database ')||d.match('database ')||d.match(' database')||d.match('table')||d.match('table ')||d.match(' table')||d.match(' table ')||d.match('index')||d.match(' index ')||d.match('index ')||d.match(' index')||d.match('grant')||d.match(' grant ')||d.match('grant ')||d.match(' grant')||d.match('update')||d.match('update ')||d.match(' update')||d.match(' update '))
{alert("Words drop, create, alter, database, index, table, grant, update are not allowed");
f.value='';
f.focus();
}

else{
if(d.length<3)
{
alert("Введіть критерій пошуку!");
f.value='';
f.focus();
}
else {
ffunc1(d);
document.sform.submit();}
}
}
}