function opennewLoc(data){
	url_loc=data.split("|");
	window.open(url_loc[0],url_loc[1])
}

var options= new Array(24)
options[0]='<option value="">Select a Movie</option>';
options[1]='<option value=""></option>';
options[2]='<option value="">-- COMING SOON --</option>';
options[3]='<option value="http://www.sonypictures.com/movies/hancock|_top">Hancock</option>';
options[4]='<option value="http://www.sonypictures.com/movies/thehousebunny|_top">The House Bunny</option>';
options[5]='<option value="http://www.sonypictures.com/movies/lakeviewterrace|_top">Lakeview Terrace</option>';
options[6]='<option value="http://www.sonypictures.com/movies/pineappleexpress|_top">Pineapple Express</option>';
options[7]='<option value="http://www.007.com|_top">Quantum of Solace</option>';
options[8]='<option value="http://www.sonypictures.com/movies/quarantine|_top">Quarantine</option>';
options[9]='<option value="http://www.sonypictures.com/movies/stepbrothers|_top">Step Brothers</option>';
options[10]='<option value="http://www.sonypictures.com/movies/youdontmesswiththezohan/index.html|_top">You Don\'t Mess With The Zohan</option>';
options[11]='<option value=""></option>';
options[12]='<option value="">-- IN THEATERS --</option>';
options[13]='<option value="http://www.sonypictures.com/movies/21|_top">21</option>';
options[14]='<option value="http://www.sonypictures.com/movies/88minutes|_top">88 Minutes</option>';
options[15]='<option value="http://www.sonypictures.com/movies/theotherboleyngirl|_top">The Other Boleyn Girl</option>';
options[16]='<option value="http://www.sonypictures.com/movies/madeofhonor|_top">Made Of Honor</option>';
options[17]='<option value="http://www.sonypictures.com/movies/promnight|_top">Prom Night</option>';
options[18]='<option value="http://www.sonypictures.com/movies/thetake|_top">The Take</option>';
options[19]='<option value="http://www.sonypictures.com/movies/thischristmas/index.html|_top">This Christmas</option>';
options[20]='<option value="http://www.sonypictures.com/movies/vantagepoint/index.html|_top">Vantage Point</option>';
options[21]='<option value="http://www.sonypictures.com/movies/zombiestrippers|_top">Zombie Strippers</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>');