window.onload = start;
window.onresize = resize;
var innerW;
var innerH;


var bgpicture = window.document.createElement("IMG")

function start() {

ge('ep_player').setAttribute('style', 'Z-index:0;position:absolute;left:10Px;top:10Px;');
    
    bgpicture.setAttribute('src', 'images/banzai800.jpg');
    bgpicture.setAttribute('style', 'Z-index:0;');
    ge('bgdiv').appendChild(bgpicture);
    resize();
}

function resize() {
    innerW = document.documentElement.clientWidth;
    innerH = document.documentElement.clientHeight;
 
    bgpicture.setAttribute('width', innerW );
    bgpicture.setAttribute('height', innerH);
    ge('bgdiv').style.width = innerW + "Px";
    ge('bgdiv').style.height = innerH + "Px";
    	ge('info').setAttribute('style', "position:absolute;left:300px;top:"+ (innerH -150) +"Px;width:500Px;height:150Px;font-family:'Times New Roman',Georgia,Serif;color:white;" );
	//ge('message').setAttribute('style', "position:absolute;left:1px;top:"+ parseInt(innerH /2) +"Px;width:" + innerW + "Px;height:30Px;font-family:'Times New Roman',Georgia,Serif;color:white;" );
    }

function ge(elname) {
    return window.document.getElementById(elname);
}

     