function alignThis(videoid, width, height) {
	try {
		$('#' + videoid).css({
			'width': width + 'px',
			'height': height + 'px'
		});
	} catch (e) {
		// ugy tunik nincs ilyen video
	}
}
