// used to restyle the button bar
function restyle(thebutton,newstyle) {
	thebutton.setAttribute("class", newstyle);
	thebutton.setAttribute("className", newstyle);
	thebutton.firstChild.style.color = ( thebutton.firstChild.style.color == "#fff" || thebutton.firstChild.style.color == "rgb(255, 255, 255)" ? "#000" : "#fff" );
}

function OpenDocWindow(filename){
	window.open("/physicians/physicians/"+filename,"doctor","scrollbars=yes,resizable=yes,width=450,height=450");
}