function onButton(td)
{
	td.style.color='#FFFFFF';
}
function offButton(td)
{
	td.style.color='';
}
function gotopage(page) {
  document.search.page.value = page;
  document.search.submit();
}
function gotopage2() {
  document.search.page.value = document.se.page.value
  document.search.submit();
}
function loadFragmentInToElement_8(fragment_url, element_id)
{
var element = document.getElementById(element_id);
if (window.XMLHttpRequest) { 
     xmlhttp = new XMLHttpRequest();
     if (xmlhttp.overrideMimeType) {
         xmlhttp.overrideMimeType('text/xml');
    }
}
else if (window.ActiveXObject) {
try {
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
     } catch (e) {
         try {
             xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
         } catch (e) {}
     }
}
xmlhttp.open("GET", fragment_url);
xmlhttp.setRequestHeader("Content-Type","text/html; charset=gb2312")
xmlhttp.onreadystatechange = function() 
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) 
{
element.innerHTML = xmlhttp.responseText;
}
}
xmlhttp.send(null);
}
////////////////////////////////////////////////////////////////////////
function move(x, y) {
if (document.all) {
object1.style.pixelLeft += x;
object1.style.pixelTop  += y;}
else
if (document.layers) {
document.object1.left += x;
document.object1.top  += y;
}};
function position() {
document.object1.left += -370;
document.object1.top  += 0;
document.object1.visibility = "show"
};
function makeStatic() {
if (document.all) {object1.style.pixelTop=document.body.scrollTop+20}
else {eval('document.object1.top=eval(window.pageYOffset+20)');}
setTimeout("makeStatic()",0);}