<!--
function TransFormCheck(f){
	var element,errmsg;
	element = f.code;
	errmsg = "Please enter the reuters code of the report.";
	if(element.value == ""){
		alert(errmsg);
		element.focus();
		return false;
	}
	openWinContent("", 620, 450,"order_trans");
	f.target = "order_trans";
	f.submit();
	return false;
}
function submitTransForm(tran_id){
	var f;
	f = document.submitTransForm;
	f.tran_id.value = tran_id;
	f.submit();
}
//-->
