/******************************
Client Side javascript Validation 
Created By  praveen  
*/
function testValue(val,regex)
{
	
 //var regex = /[^0-9\.]/; 
 return regex.test(val);

}

function showFareRulePopup(priceId)
	{
     
	   window.open('show_fare_rule.php?priceId='+priceId,'','menubar=no,locationbar=no,width=490,height=300,left=290,top=190, resizable=0,scrollbars=yes' ); 
	   return  false;

	}





