
<!--

if (navigator.appName == "Netscape") {
        layerRef="document.layers";
        styleSwitch="";
    } else {
        layerRef="document.all";
        styleSwitch=".style";
    }


function showLayer(layerName) {
        eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
}
        
function hideLayer(layerName) {
        eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
}


function checking()
{
 if ((document.subscribe.email.value=="") || (document.subscribe.email.value=="Enter email id"))
 {
  alert("please enter your e-mail address");
  document.subscribe.email.focus();
  return 0;
 }
 document.subscribe.action = "http://manaskriti.com/cgi-bin/indiaupdatesubscribe.pl";
 document.subscribe.submit();
 return 1;
}

function search()
{
	var keyword = document.subscribe.q.value;
	if(document.subscribe.search[0].checked==true)
	{
		url = "http://202.144.10.17/sifysearch/search.pl?q="+keyword+"&num=10&output=protocol4&searchselector=0&Client=SatyamOnline";
	}
	else
	{
		url = "http://www.khoj.com/bin/khoj_search?searchkey="+keyword;
	}
	location.href = url;
}

//-->