function artistCentralBio_toggle(parentElementId,activeElementId,activeClassName,inactiveClassName){var elements=jQuery("#"+parentElementId).children();for(var idx in elements){var element=elements[idx];if(element.id!="Separator"){element.className=(element.id==activeElementId)?activeClassName:inactiveClassName;}}}function artistCentralBio_showBio(bioName){var showBioId="artistCentralBio_"+bioName+"Bio";var showTabId=showBioId+"Tab";if(jQuery("#"+showTabId).className!="artistCentralBio_currentTab"){artistCentralBio_toggle("artistCentralBio_tabsUl",showTabId,"artistCentralBio_currentTab","artistCentralBio_notCurrentTab");artistCentralBio_toggle("artistCentralBio_bios",showBioId,"artistCentralBio_activeBio","artistCentralBio_inactiveBio");}}function artistCentralBio_printBio(bioElementId,modalHeaderText){var width=680;var height=460;var left=(screen.width-width)/2;var top=(screen.height-height)/2;var temp=window.open("","BiographyPrintView","scrollbars=yes,width="+width+",height="+height+",top="+top+",left="+left);temp.document.open("text/html");temp.document.write("<html>");temp.document.write("<head><title>"+modalHeaderText+"</title></head>");temp.document.write("<bo");temp.document.write('dy style="font-family:verdana,arial,helvetica,sans-serif;background-image:none;background-color:#FFFFFF">');temp.document.write("<style>img{border:0;} .artistCentralBio_attribution{text-align:center;}</style>");temp.document.write("<h2>"+modalHeaderText+"</h2>");temp.document.write(jQuery("#"+bioElementId).html());temp.document.write("</bo");temp.document.write("dy>");temp.document.write("</html>");temp.document.close();temp.print();temp.close();}
