//PopUp Window
function popitup(url,winname,width,height,scrollbars)
{
        newwindow=window.open(url,winname,'width='+width+',height='+height+',top=70,left=70,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,directories=no,location=yes,status=no');
        if (window.focus) {newwindow.focus()}
        return false;
}

//Copyright Get Year
function thisYear(){
var day=new Date();
var year=day.getFullYear();
return document.write(year);
}

function BgIMG1_on(){
    if(document.getElementById){
        document.getElementById("GSearch").style.backgroundPosition="bottom left"
    } else {
        if(document.all){
            document.all("GSearch").style.backgroundPosition="bottom left"
    }
}
}

function BgIMG1_of(){
    if(document.getElementById){
        document.getElementById("GSearch").style.backgroundPosition="top left"
    } else {
        if(document.all){
            document.all("GSearch").style.backgroundPosition="top left"
    }
}
}
