<!--
// ****************************************************
// popup window
// ****************************************************

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// ****************************************************


function execute_view_estimate_ajax_request(id_est) {
	new Ajax.Updater('contact_details', 
					'get_record_details_2.php?id_est=' + id_est, 
					{ method: 'get', evalScripts: true , parameters: { random_key: Date() } });

	return true;
}
function execute_list_categories_ajax_request(id_estcat) {
	new Ajax.Updater('contacts_list', 
					'list_all_records.php?id_estcat=' + id_estcat, 
					{ method: 'get', evalScripts: true , parameters: { random_key: Date() } });

	return true;
}

-->