utl = {}
utl.mjp = function(t,s,r)
{
  eval(t+".location='"+s.options[s.selectedIndex].value+"'");
  if (r) s.selectedIndex=0;
}
utl.ade = function(o,t,f,c)
{
	if (o.addEventListener)
	{
		o.addEventListener(t, f, c);
		return true;
	}
	else if (o.attachEvent)
	{
		var r = o.attachEvent('on' + t, f);
		return r;
	}
	else
	{
		o['on' + t] = f;
	}
}
