// Shared Javascript

// Insert a contact into the contact select box. Called from contact.
function loadContact(cid,company,person){
	//alert(cid + company + person);
	with (document.editform){
		var optionnum = contactid.length;
		contactid.options[optionnum] = new Option(company + ' - ' + person,cid,true,true);
		contactid.options[optionnum].selected = true;
	}
}

function help(t,a){
	var loc = 'home.cfm?tab=help&topic=' + escape(t) + '&infoid=' + a + '#a' + a;
	var helpwin = window.open(loc,'helpwin','scrollbars=yes,resizable=yes,height=300,width=250,menubar=yes');
	helpwin.focus();
}