function openPopup(theURL) { var windowHandle = window.open(theURL,'popup','width=500,height=500,menubar=0,toolbar=0,location=0,resizable=1,scrollbars=1,titlebar=no,left=0,top=0'); if (!windowHandle) { windowHandle.opener = self; } windowHandle.focus(); } function openPrintFriendly(theURL) { var windowHandle = window.open(theURL,'popup','width=650,height=600,menubar=0,toolbar=0,location=0,resizable=1,scrollbars=1,titlebar=no,left=0,top=0'); if (!windowHandle) { windowHandle.opener = self; } windowHandle.focus(); } // Sub-tab logic (this will be added to SAMS.js on Majors end) var prev = 'details'; function setTab(tab) { var ieFix = ""; if (navigator.appName.indexOf('Internet Explorer') != -1) { ieFix = " fix"; } var tdElement = 'td_' + prev; var divElement = 'div_' + prev; var tableElement = 'table_' + prev; document.getElementById(tdElement).className="tab" document.getElementById(divElement).className="boxtop" + ieFix document.getElementById(tableElement).className="tabhidden" prev = tab; tdElement = 'td_' + tab; divElement = 'div_' + tab; tableElement = 'table_' + tab; document.getElementById(tdElement).className="tab on" document.getElementById(divElement).className="boxtop on" + ieFix document.getElementById(tableElement).className="tabcurrent" }