function ProTabs(tab,div) {
	for(i=1; i<=3; i++) {
		if(obj = document.getElementById("tab"+i)) {
			if(i==tab) {
				// we are on this tab...
				obj.style.background	='#2A5195';
				obj.style.color		='#E4E4E4';
				obj.style.fontWeight	='bold';
			} else {
				obj.style.background	='#E4E4E4';
				obj.style.color		='#2A5195';
				obj.style.fontWeight	='normal';
			}
		}
	}


	// change the html...
	var show = document.getElementById('show');
	var html = document.getElementById(div).innerHTML;
	show.innerHTML = "<p>"+html;
}

