I don't think you need anything so elaborate as a separate script.
First download this image:

http://www.dynamicdrive.com/dynamici...pinningred.gif
and put it in the same folder as the artest.html page. Then here on artest.html where you have:
Code:
<script type="text/javascript">
/***Combo Menu Load Ajax snippet**/
function ajaxcombo(selectobjID, loadarea){
var selectobj=document.getElementById? document.getElementById(selectobjID) : ""
if (selectobj!="" && selectobj.options[selectobj.selectedIndex].value!="")
ajaxpage(selectobj.options[selectobj.selectedIndex].value, loadarea)
}
</script>
Change it to:
Code:
<script type="text/javascript">
/***Combo Menu Load Ajax snippet**/
function ajaxcombo(selectobjID, loadarea){
var selectobj=document.getElementById? document.getElementById(selectobjID) : "";
if (selectobj!="" && selectobj.options[selectobj.selectedIndex].value!=""){
document.getElementById(loadarea).innerHTML = '<img src="spinningred.gif" style="margin: 0 auto; display: block; width: 32px; height: 32px;" alt="Loading" title="">';
ajaxpage(selectobj.options[selectobj.selectedIndex].value, loadarea);
}
}
</script>
That's it!
Bookmarks