// JavaScript Document

function getdescription (code){
	if (code.indexOf("DCSF") >= 0 ) {
		return 2;
	}
	if (code.indexOf("BAHA") >= 0 ) {
		return 3;
	}
	return 0;
}
