// JavaScript Document
function LoadVideoGallery(sGalleryType, iCategory, iVideo, sQuality){
	var sURL, sBranding, sGalleryXML //http://www.youngeagles.org/video/
	switch(sGalleryType){
		case "young eagles" :
			sURL =		'http://www.youngeagles.org/media/videogallery.asp';
			sXML =		'youngeagles/youngeagles';
			sBranding = 'youngeagles/back-ye.jpg';
			break;
		case "timeless voices" :
			sURL =		'http://www.timelessvoices.org/media/videogallery.asp';
			sXML =		'timelessvoices/timelessvoices';
			sBranding = 'timelessvoices/back-tv.jpg';
			break;
		case "airventure" :
			sURL =		'http://www.airventure.org/media/videogallery.asp';
			sXML =		'airventure/airventure';
			sBranding = 'airventure/back-av.jpg';
			break;
		case "sportpilot" :
			sURL =		'http://www.sportpilot.org/media/videogallery.asp';
			sXML =		'sportpilot/sportpilot';
			sBranding = 'sportpilot/back-sp.jpg';
			break;
		default :
			sBranding = '';
	} 
	//alert(iVideo);
	//window.open(sURL+'?sCL='+sXML+'&C='+iCategory+'&V='+iVideo+'&sBack='+sBranding);
	window.open(sURL+'?sCL='+sXML+'&C='+iCategory+'&V='+iVideo+'&Q='+sQuality+'&sBack='+sBranding,'_blank','toolbar=no,scrollbar=no,resizable=yes,width=800,height=500');
}
