function isIE() {
	var browser = navigator.appName;
	return (browser == 'Microsoft Internet Explorer');
}

function editItem(id) {
	var did  = document.getElementById(id).style.display;
	var prop = 'table-row';
	if (isIE()) prop = 'block';
		
	if (did == 'none') {
		document.getElementById(id).style.display = prop;
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
}

function showForm() {
	if (document.getElementById('add_item_form').style.display == 'none')
		document.getElementById('add_item_form').style.display = 'block';
	else document.getElementById('add_item_form').style.display = 'none';
	
	if (document.getElementById('add_item_a').style.display == 'none')
		document.getElementById('add_item_a').style.display = 'block';
	else document.getElementById('add_item_a').style.display = 'none';
}

function loadData(id1,form_element_id) {
	$.get("select.php", { id: id1 },
   function(data){
	   //document.getElementById().innerHTML=;
	   $("#"+form_element_id).html(data);
   });
}

$(function () {
	//alert(document.forms.add_item_form.add[compound][].options[0].value);		
	//alert($('#add_form_sel').options[0].value);
	loadData(22,'milestone_company_select');		
});
