function totype(sType) { 
	var i=0;
	var o=document.forms;
	if (o.length==2) i=1;
    if (o[i].sBrowType!=null) {
		o[i].sBrowType.value=sType;
		o[i].submit();
	}
}

