// JavaScript Document
var cur_color_num = 0;
var cur_prof_id = 0;

function ShowColor(prof_id,color_num){
var oldlayer = 'prof_'+prof_id+'_'+cur_color_num;
if (cur_prof_id != prof_id) {
	//alert('Change prof '+cur_prof_id+' to '+prof_id);
    oldlayer = 'prof_'+cur_prof_id+'_'+cur_color_num;
    document.getElementById(oldlayer).style.visibility="hidden";
    document.getElementById(oldlayer).style.display="none";
    oldlayer = 'prof_'+cur_prof_id+'_0';
    document.getElementById(oldlayer).style.visibility="visible";
    document.getElementById(oldlayer).style.display="block";    
    oldlayer = 'prof_'+prof_id+'_0';
	document.getElementById(oldlayer).style.visibility="hidden";
    document.getElementById(oldlayer).style.display="none";

}
else {
 document.getElementById(oldlayer).style.visibility="hidden";
 document.getElementById(oldlayer).style.display="none";
};
cur_prof_id = prof_id;
//alert(cur_prof_id);
var layerName = 'prof_'+prof_id+'_'+color_num;
document.getElementById(layerName).style.visibility="visible";
document.getElementById(layerName).style.display="block";
cur_color_num = color_num;
}

function MailTo(adr01,adr02){
 document.location="mailto:"+adr01+"@"+adr02;
}