// JavaScript Document

var azshow = 0;
    function popup(url, id, width, height)
    {
      newwindow = window.open(url,id,'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=' + width + ',height=' + height);
      newwindow.focus();
    }
	function showaztop(){
//		if(azshow ==0){
			document.getElementById('aztoplinks').style.visibility='visible';
			document.getElementById('aztoplinks').style.display='block';
			azshow = 1;
		
//		}else{
//			document.getElementById('aztoplinks').style.visibility='hidden';
//			document.getElementById('aztoplinks').style.display='none';
//			azshow = 0;

//		}
	
	}
	
//Highlight a button...must have a transparent background
function highlight(newcolor, idname){
	document.getElementById(idname).style.backgroundColor=newcolor;
	
}