﻿function la(){window.location="http://www.liveadmins.com";}
function validTextBox(id) {
    if (document.getElementById(id).value.length == 0) {
        document.getElementById(id).className = "textBoxerror";
        document.getElementById(id).focus();
        return false;
    }
    else {
        document.getElementById(id).className = "textBox";
        return true;
    }
}

function openecb() {

    var ecb = window.showModalDialog('callbackform.aspx', Math.random(), "center:yes;dialogWidth:448px; dialogHeight:359px;scroll: no;status:no;   ");
}


ie5  = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);
opac = 40;
 

function fade() {
    if(opac <= 100){
        opac+=5;
        if(ie5) document.getElementById("toper").filters.alpha.opacity = opac;
        if(ns6) document.getElementById("toper").style.opacity = opac/100;
        setTimeout('fade()', 50);
        
    }else{
        opac=40;
    }
    
}

var bannercount=0;
function banners(){
bannercount+=1;
var baner=document.getElementById("toper");
baner.style.backgroundPosition="0px "+bannercount*294+"px";

  fade();
    
    
    
    if(bannercount===7)bannercount=0;
     
  setTimeout(banners,9000);
}

setTimeout(banners,9000);
