function redirect(oform){
var href=null
for (var i=0;i<oform.rdoption.length;i++)
{ if (oform.rdoption[i].checked)
href=oform.rdoption[i].value
}
if (href !=null)
document.location.href=href
return false
}