/*--------------------------------------------------------------
for Trailer Popup
--------------------------------------------------------------*/
function openTrailer(id){
	if((! id)||(id == 1)){
		trailerURL = "trailer/trailer.html";
	}else if(id == 2){
		trailerURL = "trailer/trailer2.html";
	}
	window.open(trailerURL,"trailerWin","width=360,height=320");
}

function openInterview(){
	interviewURL = "cast/interview.html";
	window.open(interviewURL,"interviewWin","width=570,height=600,scrollbars=yes,resizable=yes");
}


