diff -r 218a627eb53e -r 547b7ba6d535 includes/clientside/static/ajax.js --- a/includes/clientside/static/ajax.js Mon Apr 14 12:13:12 2008 -0400 +++ b/includes/clientside/static/ajax.js Mon Apr 14 22:02:04 2008 -0400 @@ -275,12 +275,12 @@ var btn_submit = document.createElement('a'); btn_submit.href = '#'; btn_submit.appendChild(document.createTextNode($lang.get('etc_go'))); - btn_submit.className = 'fakebutton fakebutton-submit'; + btn_submit.className = 'abutton abutton_green'; var btn_cancel = document.createElement('a'); btn_cancel.href = '#'; btn_cancel.appendChild(document.createTextNode($lang.get('etc_cancel'))); - btn_cancel.className = 'fakebutton'; + btn_cancel.className = 'abutton'; btndiv.appendChild(btn_submit); btndiv.appendChild(document.createTextNode(' | ')); @@ -829,49 +829,6 @@ return id; } -/* -function ajaxChangeStyle() -{ - // IE <6 pseudo-compatibility - if ( KILL_SWITCH ) - return true; - var win = document.getElementById("cn2"); - win.innerHTML = ' \ -
\ -

Select a theme...

\ - \ -
\ -

\ - \ - \ - \ -
\ - '; - ajaxGetStyles(ENANO_CURRENT_THEME); - jws.openWin('root2', 340, 300); -} - -function ajaxGetStyles(id) { - setAjaxLoading(); - ajaxGet(stdAjaxPrefix+'&_mode=getstyles&id='+id, function() { - if ( ajax.readyState == 4 && ajax.status == 200 ) { - unsetAjaxLoading(); - eval(ajax.responseText); - html = '

And a style...

'; - document.getElementById('styleSelector').innerHTML = html; - document.getElementById('styleSubmitter').style.display = 'inline'; - } - }); -} -*/ - function ajaxSwapCSS() { // IE <6 pseudo-compatibility