function loadFilmstrip(YT,start){
	window.addEvent('domready', function() {
		//We can use one Request object many times.
		var req = new Request.HTML({url:'scripts/request.php?y='+YT+'&s='+start, 
			onSuccess: function(html) {
				//Clear the text currently inside the results div.
				$('filmstrip').set('text', '');
				//Inject the new DOM elements into the results div.
				$('filmstrip').adopt(html);
			},
			//Our request will most likely succeed, but just in case, we'll add an
			//onFailure method which will let the user know what happened.
			onFailure: function() {
				$('filmstrip').set('text', 'The request failed.');
			}
		});
		req.send();
	});
} 


