function submitDisneyMoreCharactersForm(strSlctValue)
{
	document.frmGallery.dsny_ctgy_type.value = 'story';
	document.frmGallery.dsny_ctgy_level.value = 2;
	document.frmGallery.dsny_ctgy1.value = strSlctValue.slice(0, 18);
	document.frmGallery.general_category_id.value = strSlctValue.slice(19, 37);
	document.frmGallery.submit();
}
function refreshBrowseType(strBrowseType)
{
	if (strBrowseType == 'story') {
		if (getLayer('iframe_browse').src != strBrowseStoriesUrl) {
			getLayer('iframe_browse').src = strBrowseStoriesUrl;
		}
	} else {
		if (getLayer('iframe_browse').src != strBrowseStylesUrl) {
			getLayer('iframe_browse').src = strBrowseStylesUrl;
		}
	}
}
