
<!--

numMovies = 3;

var movies = new Array(numMovies);
for (x=0;x<numMovies;x++){
	movies[x] = new Object();
}



function Showtimes(movieNum){
var n = movieNum;
document.write ("<table class='showtimes' width='31'><tr valign='top'><th>MO<BR>"+movies[n][0]+"<\/th><th>|<\/th><th>TU<BR>"+movies[n][1]+"<\/th><th>|<\/th><th>WE<BR>"+movies[n][2]+"<\/th><th>|<\/th><th>TH<BR>"+movies[n][3]+"<\/th><th>|<\/th><th>FR<BR>"+movies[n][4]+"<\/th><th>|<\/th><th>SA<BR>"+movies[n][5]+"<\/th><th>|<\/th><th>SU<BR>"+movies[n][6]+"<\/th><\/tr><\/table>");

}




//-->