function showCurrentImage(obj){
    if(obj.selectedIndex > 0){
        arr = obj.id.split('_');
        var imgDiv = document.getElementById(arr[arr.length-1].replace('Lst', 'Img'));
        imgDiv.innerHTML = obj.options[obj.selectedIndex].value.toLowerCase().replace('border: 0px solid;', 'width:86px;border:1px solid black;');
    }
}

function writemail(text, pre,mid,post)
{
	document.write('<a href="mailto:'+pre+mid+post+'">'+text+'</a>');
}


function mail(pre,mid,post)
{
	document.write('<a href="mailto:'+pre+mid+post+'">'+pre+mid+post+'</a>');
}

