// JavaScript Document
//Add Bank Account Module

function mod_addNew(){
	
	var param = "op=AddNewCustomer";
	Ajax_Send("POST","mod_process.php",param,addNew_result);
	start_preloader('pre_menu',15,15);
}

function addNew_result(){
	
	window.location = "main.php";
}

String.prototype.strip = function( exp ){ return this.replace(exp?exp:/\s/g,""); };