/**
  * ENH-227
  * This method is called for
  * playing flash and sound for
  * flash file
 **/
var filename = new Array();
filename[0] = '/kids/img/sounds/pr000001.mp3';
filename[1] = '/kids/img/sounds/WBK-SportsandHobbies.mp3';//Sports and hobbies
filename[2] = '/kids/img/sounds/WBK-Arts.mp3';//Arts
filename[3] = '/kids/img/sounds/WBK-HistoryandGovernment.mp3';//History and govt
filename[4] = '/kids/img/sounds/WBK-PlantsandAnimals.mp3';//Plants and animals
filename[5] = '/kids/img/sounds/WBK-WorldReligions.mp3';//World religions
filename[6] = '/kids/img/sounds/WBK-ScienceandMathematics.mp3';//Science and maths
filename[7] = '/kids/img/sounds/WBK-Places.mp3';//Places
filename[8] = '/kids/img/sounds/WBK-People.mp3';//People
filename[9] = '/kids/img/sounds/WBK-Home.mp3';//Home
filename[10] = '/kids/img/sounds/WBK-Maps.mp3';//Maps
filename[11] = '/kids/img/sounds/WBK-Dictionary.mp3';//Dictionary
filename[12] = '/kids/img/sounds/WBK-Pictures.mp3';//Pictures
filename[13] = '/kids/img/sounds/WBK-MakeIt.mp3';//Make It
filename[14] = '/kids/img/sounds/WBK-ThinkIt.mp3';//Think It
filename[15] = '/kids/img/sounds/WBK-BeIt.mp3';//Be It
filename[16] = '/kids/img/sounds/WBK-TeacherResources.mp3';//Teacher resource
filename[17] = '/kids/img/sounds/WBK-Activities.mp3';//Activities
filename[18] = '/kids/img/sounds/WBK-SearchIt.mp3';//Search it

/*
var preLoadfilename = new Array();
var p = filename.length;

for (i = 0; i < p; i++)
{
   preLoadfilename[i] = new Image();
   preLoadfilename[i].src = filename[i];
}
*/
/*
div id="wb-nav2"

*/
function PlaySound(surl,soundstate,autostart)
{	
    var createElement = "false"; 
    var soundstate = soundstate;
    var surl = surl;
    var autostart = autostart;
    ndSound=document.getElementById("soundElement");
    if(!ndSound)
    {
    	ndSound = document.createElement("div");
    	ndSound.id="soundElement";
    	ndSound.className="pronElement";
    	createElement="true"
    }
    if(soundstate == "disable")
    {
    	return stopSound();
    }
    else if(soundstate == "enable" && autostart == "false")
    {
    	return stopSound();
    }
    else if(soundstate == "enable")
    {   
    	ndSound.innerHTML='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" '+
    	'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"' +
    	'width="1" height="1" id="player" align="middle"> '+
    	'<param name="wmode" value="transparent" /> '+
    	'<param name="allowScriptAccess" value="worldbookonline.com" />' +
    	'<param name="flashVars" value="theLink='+filename[surl]+'" /> '+
    	'<param name="movie" value="/kids/img/sounds/wb_player.swf" /> '+
    	'<param name="quality" value="high" /> '+
    	'<embed src="/kids/img/sounds/wb_player.swf" '+
    	'flashVars="theLink='+filename[surl]+'"' +
    	'autostart='+autostart+'"' +
    	'quality="high" '+
    	'wmode="transparent" '+
    	'width="125" '+
    	'height="1" '+
    	'name="player" '+
    	'align="middle" '+
    	'allowScriptAccess="blrendeca.worldbookonline.com" '+
    	'type="application/x-shockwave-flash" '+
    	'pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
    	if (createElement=="true")
    	{
    		elmSounds = document.getElementById("soundeffects");
    		elmSounds.parentNode.insertBefore(ndSound, elmSounds);
    	}
    }
}

function stopSound()
{
    return false;
}

/* Added for ENH-33 to display the metanav*/
function showPoductsPage(strProductName)
{
	if(strProductName == "Reference Center Home") {
		document.product.action="/wb/Home";
		document.product.submit();
	} else if(strProductName == "Spanish-language Encyclopedia") {
		document.product.action="/eeh/Home";
		document.product.submit();
	} else if(strProductName == "Encyclopédie Découverte") {
		document.product.action="/decouverte/home";
		document.product.submit();
	}else if(strProductName == "World Book Advanced") {
		document.product.action="/advanced/home";
		document.product.submit();
	}else if(strProductName == "Research Tools Edition") {
		document.product.action="/researchtools/home";
		document.product.submit();
	}else if(strProductName == "Research Libraries") {
		window.parent.location.href="http://wbrl.worldbookonline.com";
	}
	return false;
}
/*************		BEGIN FUNCTION TO EXPAND THE FOOTER DROP DOWN 	*************/
function setDivPosition(which){
	var divToPos = document.getElementById(which);
	divToPos.style.display = 'block';
}
function hideRollOverDiv(which){
	var divToHide = document.getElementById(which);
	divToHide.style.display = 'none';
}
/*************		END FUNCTION TO EXPAND THE FOOTER DROP DOWN 	*************/
/* ENH-33 ends here*/