// JavaScript Document

$(document).ready(function(){
	$('#webinar-selector').change(function(){
	  webinarSelect();
	});						   
});

function selectPage(url){
	window.open(url);
}

function webinarSelect(){
	var value;
	$("#webinar-selector option:selected").each(function () {
		value = $(this).val();
	  });
	
	if(value != 'open'){
		window.open(value);
	}
}

