/*This fuction is called when first time page load*/

function getCmp(){

	var cmp = $.trim($("#cmp").val());
	if(cmp==''){
		alert("Please enter the company name.");
		$("#cmp").focus();
		return false;
	} else {
		$('#load').show();
		$('#searched_cmp').hide();
		var dataString = "cmp="+cmp;
		jQuery.ajax({
			type: "POST",
			url: "./chxmlgateway-app/exNameSearch.php",
			data: dataString,
			success: function(data) {
				$('#load').hide();
				$('#searched_cmp').show();
				$("#searched_cmp").html(data);
			}
		  });
		  return false;
	 }
	 return false; 
	 
}

