function opennewLoc(data){
	url_loc=data.split("|");
	window.open(url_loc[0],url_loc[1])
}

var options= new Array(31)
options[0]='<option value="">Select a Movie</option>';
options[1]='<option value=""></option>';
options[2]='<option value="">-- COMING SOON --</option>';
options[3]='<option value="/movies/21/index.html|_top">21</option>';
options[4]='<option value="/movies/hancock/index.html|_top">Hancock</option>';
options[5]='<option value="/movies/madeofhonor/index.html|_top">Made of Honour</option>';
options[6]='<option value="/movies/promnight/index.html|_top">Prom Night</option>';
options[7]='<option value="/movies/quantumofsolace/index.html|_top">Quantum of Solace</option>';
options[8]='<option value="/movies/stepbrothers/index.html|_top">Step Brothers</option>';
options[11]='<option value=""></option>';
options[12]='<option value="">-- AT CINEMAS --</option>';
options[13]='<option value="/movies/firstsunday/index.html|_top">First Sunday</option>';
options[14]='<option value="/movies/rambo/index.html|_top">Rambo</option>';
options[15]='<option value="/movies/vantagepoint/index.html|_top">Vantage Point</option>';
options[22]='<option value=""></option>';

document.writeln('<select size="1" class="dropdown" onchange=opennewLoc(this.options[this.selectedIndex].value) >');
var x=0;
for (x=0; x<options.length; x++)
{
document.writeln(options[x]);
}
document.writeln('</select>');