// JavaScript Document

/* Start Script For Search by profile id -Shriram Chaudhari date : 25/11/2010 */

/* 30-jan By Vikrant */

  function index_search_for (serchfor)
    {
		if(document.getElementById('pid').checked==true)
		{
			document.getElementById('search_profile_by_id').value='BM';
		}
		if(document.getElementById('pname').checked==true)
		{
			document.getElementById('search_profile_by_id').value='';
		}
	    document.getElementById("index_search_data").value=serchfor;		
	}
	
  function index_search_for1 ()
    {
		var searchCatName =document.getElementById("search_profile_by_id").value;
	    var serchfor=document.getElementById("index_search_data").value;		
	  	if (serchfor=="pid")
		{ 
			submit_search_profile_by_id(); 
		}
		else
		{
			if (document.getElementById("search_profile_by_id").value!="")
			{
	  	    window.location="search_result.php?q=user_fname='"+searchCatName+"'";
			/*SEARCH RESULT REPLACED WITH THE search_result.php page*/
/*window.location="search_by_name_result.php?name="+document.getElementById("search_profile_by_id").value;*/
			}
			else
			 { alert ("Enter Name!!!"); }
			} 
	}
/* 30-jan By Vikrant */

function submit_search_profile_by_id()
{
	
	if(document.getElementById('search_profile_by_id').value=="")
	{
		alert("Please enter Profile ID");
		return false;
	}
	else
	{			
     	
		var tempid=document.getElementById('search_profile_by_id').value;
        search_by_id (tempid);
		return true;		
	}
}


function submit_search_profile_by_id1(e)
{	
	if (e.keyCode==13)
	 { index_search_for1(); }
	else
	 { return false; }
}


/* End Script For Search by profile id -Shriram Chaudhari date : 25/11/2010 */

/* Start Script For Search box of index page by profile id -Shriram Chaudhari date : 30/11/2010 */
function submit_index_search_box()
{
	
	document.index_search.submit();
	return true;
		
	
}

/* End Script For Search box of index page by profile id -Shriram Chaudhari date : 30/11/2010 */



