

NS = 0;
IE =0;
if(navigator.appName == 'Netscape'){
 NS = 1;
}else if(navigator.appName == 'Microsoft Internet Explorer'){
 IE = 1; 
}

var Icons = new Array("item1");
finalY = -470;
backY = 0;
alreadyShow =false;
showfilm01 = false;
function fall(x){
	if(IE) {
        windowWidth = document.body.clientWidth;
		}
	if(NS) {
		windowWidth = window.innerWidth;
	}
	document.getElementById(Icons[0]).style.left =(windowWidth)/2 -266 +'px';
    if (finalY<0 & !alreadyShow){
        finalY=finalY+20;
        document.getElementById(Icons[0]).style.top = finalY +'px';
    }else{
        document.getElementById(Icons[0]).style.top = '0px';
        clearInterval(toAction);
        finalY = -470;
        alreadyShow =true;
		playFilm(x);
    }
}
function pullUp(){
    if(backY>-470 & alreadyShow){
        backY =backY -20;
        document.getElementById(Icons[0]).style.top = backY +'px';
    }else{
        document.getElementById(Icons[0]).style.top = '-470px';
        clearInterval(toActionBack);
        backY = 0;
        alreadyShow =false;
		Nonshow('black');
    }
}
function toFall(y){toAction = setInterval(function(){fall(y)},1);}
function toBack() {
	toActionBack = setInterval("pullUp()",1);	
	document.getElementById("filmZone").innerHTML='';
}
//
function playFilm(filmID){
	if(filmID=="film01"){/*
		document.getElementById("filmZone").innerHTML ='<div style="color:#fff">asdaskd;aks</div>';
		*/
		document.getElementById("filmZone").innerHTML ='<div>'+'<object width="467" height="390" >\n'+'<param name="movie" value='+film01URL+' ></param>\n'+'<param name="wmode" value="transparent"></param>\n'+'<embed src='+film01URL+' type="application/x-shockwave-flash" wmode="transparent" width="467" height="390"></embed>\n'+'</object>'+'</div>';		
		document.getElementById("title1").style.display="block";
		document.getElementById("title2").style.display="none";						
		showfilm01= true;
	}else{
		document.getElementById("filmZone").innerHTML ='<div>'+'<object width="467" height="390" >\n'+'<param name="movie" value= '+film02URL+' ></param>\n'+'<param name="wmode" value="transparent"></param>\n'+'<embed src='+film02URL+' type="application/x-shockwave-flash" wmode="transparent" width="467" height="390"></embed>\n'+'</object>'+'</div>';		
		document.getElementById("title2").style.display="block";
		document.getElementById("title1").style.display="none";
		showfilm01= false;
	}
}
function nextFilm() {
	if(!showfilm01){
		playFilm("film01");	
	}else{
		playFilm("film02");	
	}
}
//
function openSwfCenter2(filmID){ // filmNo is from 0 to 2; sample 
	if(IE) {
    	windowWidth = document.body.clientWidth;
  		windowHeight = document.body.clientHeight;
  	}
 	if(NS) {
  		windowWidth = window.innerWidth;
  		windowHeight = window.innerHeight;
 	}
	Toshow('black');
 	document.getElementById(Icons[0]).style.left =(windowWidth-470)/2 +'px';
 	document.getElementById(Icons[0]).style.top =(windowHeight-532)/2 +'px';
	playFilm(filmID);
	/*document.getElementById('swfContent').innerHTML =films[filmNo];
	document.getElementById('filmTitle').innerHTML = titleText[filmNo]*/
}
function closeSwfCenter2(){
	 document.getElementById(Icons[0]).style.left ='-500px';
	 Nonshow('black');
	 document.getElementById("filmZone").innerHTML='';
	/* document.getElementById('swfContent').innHTML ='';*/
}