// JScript source code

function setClassName(ctrl, className) {
	if(ctrl!=null){
		ctrl.className=className;
	} 
}

function navigateConsultants(firstLetterInName) {
	if (firstLetterInName=='E'){
		location.href='http://www.callista.se/Enterprise/Consultants';
	}	
	else if(firstLetterInName=='EC'){
		location.href='http://www.callista.se/enterprise/contact.html';
	}
	else if(firstLetterInName=='K'){
		location.href='http://knowledgebase.callista.se/Default.aspx?MenuName=Company_Consultants';
	}
	else{
		location.href='http://www.callista.se/ITPartner/Konsulter.htm';
	} 
}

