<!--

	var section_name, section_id, wait_element, clear_elements, wrapper, no_comments;

	function add_comments(p_section_name, p_section_id)
	{
		if (document.getElementById('com-'+p_section_id+'-nores'))
			document.getElementById('com-'+p_section_id+'-nores').innerHTML = '';
			 
		clear_elements  = new Array(document.getElementById('com-'+p_section_id+'-comments'));
		section         = 'addComments';
		wait_element    = document.getElementById('com-'+p_section_id+'-results');
		wrapper         = document.getElementById('com-'+p_section_id+'-wrapper');
		var com_name    = document.getElementById('com-'+p_section_id+'-name').value;
		var country     = document.getElementById('com-'+p_section_id+'-country-id').options[document.getElementById('com-'+p_section_id+'-country-id').selectedIndex].value;
		var question    = document.getElementById('com-'+p_section_id+'-question').options[document.getElementById('com-'+p_section_id+'-question').selectedIndex].value;
		var comments    = document.getElementById('com-'+p_section_id+'-comments').value;
		var com_counter = document.getElementById('com-'+p_section_id+'-counter').value;
		
		ajax_page       = 'http://www.plane-mad.com/ajax-comments.php';
		submit_string   = 'action=add-comments&output=json&section='+p_section_name+'&section-id='+p_section_id+'&com-name='+escape(com_name);
		submit_string  += '&com-country-id='+country+'&com-question='+escape(question)+'&com-comments='+escape(comments)+'&com-counter='+com_counter;
		wait_element    = document.getElementById('com-'+p_section_id+'-results');
		wait_element.innerHTML = html_wait('Please Wait - Loading');
		get_json_results(ajax_page, submit_string);
	}

	function show_coms(p_tag_id)
	{
		window.location = '#'+p_tag_id;
		show_div(p_tag_id);
	}
	
-->
