// JavaScript Document



function selectbox (t_id, t_value ) {
	var a = document.getElementById(t_id);
	for (i=0;i<a.length;i++) {
		if ( t_value == a.options[i].value ) {
			a.options[i].selected = true;
			return false;
		}
	}
}

function checkbox( t_id, t_value ){
	if ( t_value != '' ) {
		document.getElementById(t_id).checked = true ;
	}
}

