// JavaScript Document

// for search
function chngaction()
{
if (document.find.sitesearch[1].checked)
{
document.find.q.value="";
document.find.cof.value="";
}
else
{
document.find.action = 'http://www.google.com/custom';
document.find.q.value=document.find.search.value;
}
return true;
}