function sendTo()
{
	//alert(document.forms[0].elements[1].options[document.forms[0].elements[1].selectedIndex].value)
	url=document.forms[0].elements[1].options[document.forms[0].elements[1].selectedIndex].value;
	document.location = '/indications/' + url;
}
function send(form)
{
	url=form.elements[1].options[form.elements[1].selectedIndex].value;
	document.location = '/indications/' + url;
}