﻿// JScript 文件

var u1,u2,u3;
u1=document.getElementById("upitemtd1");
u2=document.getElementById("upitemtd2");
u3=document.getElementById("upitemtd3");

u1.onmouseover=function(){
    
    UpTitle(u1,"DefaultUpInfo.aspx");
    
}

u2.onmouseover=function(){
    UpTitle(u2,"MainDeList.aspx?sort=48&num=13&len=25");
}
u2.onclick=function(){
    location.href=("InfoSort.aspx?sort2=48");
}

u3.onmouseover=function(){
    UpTitle(u3,"MainDeList.aspx?sort=49&num=13&len=25");
}

u3.onclick=function(){
    location.href=("InfoSort.aspx?sort2=49");
}

function UpTitle(cont,sort){
    u1.background="images/s_05.jpg";
    u2.background="images/s_05.jpg";
    u3.background="images/s_05.jpg";
    
    u1.style.color="#0439AF";
    u2.style.color="#0439AF";
    u3.style.color="#0439AF";
    
    
    cont.background="images/s_04.jpg";
    
    cont.style.color="#CE6531";
    
    var fra=document.getElementById("UpInfoFrame");
    fra.src=sort;
}
