function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}
function openWinAugp(theURL) {
  	window.open(theURL,'augpConf','toolbar=0,location=0,status=1,menubar=0,scrollbars=1,resizable=1,width=350,height=400');
}
function showTab(idTab) {
	document.getElementById("tt"+idTab).style.display='none';
	document.getElementById("tb"+idTab).style.display='block';
}
function hidTab(idTab) {
	document.getElementById("tt"+idTab).style.display='block';
	document.getElementById("tb"+idTab).style.display='none';
}
