
//controls loading of trailers

function chkVid(){

var x = document.getElementById('trailers');

var y = x[document.getElementById('trailers').selectedIndex].value;

var url = "index.php?trailer=" + y;

window.location = url;

}


function chkScreen(){

var x = document.getElementById('trailers');

var y = x[document.getElementById('trailers').selectedIndex].value;

var url = "screen.php?trailer=" + y;

window.location = url;

}




//displays the 'Join our email list for updates' form

function showCntct(){

var x = document.getElementById('contact').style.display;

	if(x=='none'){

	document.getElementById('contact').style.display = "block";

	}

	else{

	document.getElementById('contact').style.display = "none";

	}	

}





//switches from the image to the trailer after the trailer has been hidden

//add 13 pixels to height for quicktime interface



function showTrailer(){

	document.getElementById('trlr_mov').style.display = "block";

	document.getElementById('trlr_img').style.display = "none";

	playMov();

}	

function showScreen(){

	document.getElementById('trlr_mov').style.display = "block";

	document.getElementById('trlr_img').style.display = "none";

	playMov();

}

function stopMov(){
document.movie1.Stop();
}

function playMov(){
document.movie1.Play();
}



