function preload()
{  
    var preload = new Array('images/button-active.png', 'images/button-hover.png', 'images/button-down.png', 'images/formbutton-active.png', 'images/formbutton-hover.png', 'images/formbutton-down.png', 'images/go-active.png', 'images/go-hover.png', 'images/go-down.png', 'images/comment-bg.jpg') ;
    var loader = new Array();

    for(var i = 0; i < preload.length; i++) 
    {
        loader[i] = new Image();
        loader[i].src = 'http://my.kxproject.com/'+preload[i];
    }
}

function imgover(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/button-hover.png')";
}

function imgout(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/button-active.png')";
}

function imgdown(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/button-down.png')";
}

function imgup(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/button-hover.png')";
}



function btnover(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/formbutton-hover.png')";
    document.getElementById(imgid).style.color = "#5577cf";
}

function btnout(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/formbutton-active.png')";
    document.getElementById(imgid).style.color = "#405a9c";
}

function btndown(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/formbutton-down.png')";
}

function btnup(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/formbutton-hover.png')";
}



function goover(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/go-hover.png')";
    document.getElementById(imgid).style.color = "#5577cf";
}

function goout(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/go-active.png')";
    document.getElementById(imgid).style.color = "#405a9c";
}

function godown(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/go-down.png')";
}

function goup(imgid)
{
    document.getElementById(imgid).style.backgroundImage = "url('images/go-hover.png')";
}



function submitform(formid)
{
      document.getElementById(formid).submit();
}



function redirect(str)
{        
    setTimeout('window.location.replace("'+str+'")', 1000);
}



function clearinput(inputid)
{
      document.getElementById(inputid).value = "";
}