<!--
       function showdiv(divid){
			if(document.getElementById(divid).style.display == 'none'){
			  document.getElementById(divid).style.display = 'block';
			}else{
			  document.getElementById(divid).style.display = 'none';
			}
		}
		
        String.prototype.trim = function() {
            a = this.replace(/^\s+/, '');
            return a.replace(/\s+$/, '');
        };		
//-->