function getQueryVariable(variable) {
	var query = window.location.search.substring(1);
	var vars = query.split("&");
	for (var i=0;i<vars.length;i++) {
		var pair = vars[i].split("=");
		if (pair[0] == variable) {
			return pair[1];
		}
	}
	return '';
}

var topLevelCollectionID = getQueryVariable ('topcoll');
var autoLoadAlbumID = getQueryVariable ('album');
var autoLoadPhotoID = getQueryVariable ('photo');
var autoStartSlideShow = getQueryVariable ('playslideshow');

function launch() {	
		AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
		'width', '900',
		'height', '730',
		'src', 'expose/swf/expose',
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'id', 'expose',
		'bgcolor', '#ffffff',
		'name', 'expose',
		'menu', 'false',
		'allowScriptAccess','sameDomain',
		'movie', 'expose/swf/expose',
		'salign', '',
		'FlashVars', 'bgColor=ffffff&albumsXMLURL=xml/albums.xml&stringsXMLURL=config/strings.xml&formatsXMLURL=config/formats.xml&configXMLURL=config/config.xml&baseXMLURL=xml/&baseImageURL=img/&baseVideoURL=expose/img/&baseAudioURL=img/&topLevelCollectionID=' + topLevelCollectionID + '&autoLoadAlbumID=' + autoLoadAlbumID + '&autoLoadPhotoID=' + autoLoadPhotoID + '&autoStartSlideShow=' + autoStartSlideShow + '&bgImageURL=&fgImageURL=&language=english&useEmbeddedFonts=yes',
		'base', 'expose'
		); 
}
