function validate()
{
var flg=0;
x=document.myForm
txt=x.myInput.value

if ((txt.toUpperCase())=="COFFIN" ||(txt.toUpperCase())=="COFFINS")
{
window.open("Coffin_S.htm",target="_self")
return false
flg=1;
}

if ((txt.toUpperCase())=="CASKET" ||(txt.toUpperCase())=="CASKETS")
{
window.open("Casket_S.htm",target="_self")
return false
flg=1;
}

if ((txt.toUpperCase())=="HEARSE")
{
window.open("Hearse_S.htm",target="_self")
return false
flg=1;
}

if ((txt.toUpperCase())=="FREEZER BOX" ||(txt.toUpperCase())=="FREEZERBOX" ||(txt.toUpperCase())=="FREEZER")
{
window.open("FreezerBox_S.htm",target="_self")
return false
flg=1;
}

if ((txt.toUpperCase())=="MAP")
{
window.open("Map_S.htm",target="_self")
return false
flg=1;
}


if (flg==1)
{return false; flg=0;}
else
{return true; flg=0;}

}
