Trues,
передавай параметры как свойства объекта.
function alertos(obj){
if(obj.one_al) { alert(obj.one_al); }
if(obj.two_al) { alert(obj.two_al); }
if(obj.three_al) { alert(obj.three_al); }
}
alertos({one_al: 'one', two_al: 'two', three_al: 'three'});