function showPoductsPage(strProductName)
{
	document.product.target="_self";
	if(strProductName == "Reference Center Home") {
		document.product.action="/wb/Home";
		document.product.submit();
	} else if(strProductName == "World Book Kids") {
		document.product.action="/kids/home";
		document.product.submit();
	} else if(strProductName == "Spanish-language Encyclopedia") {
		document.product.action="/eeh/Home";
		document.product.submit();
	} else if(strProductName == "World Book Advanced") {
		document.product.action="/advanced/home";
		document.product.submit();
	} else if(strProductName == "L'Encyclopédie Découverte") {
		document.product.action="/decouverte/home";
		document.product.submit();
	}
	/* WBDP-1163 - R19 Removed Research Tools Edition & Research Libraries */
	/* Added for ENH-31 to display the Discover in the metanav*/ 
	else if(strProductName == "World Book Discover") {
		document.product.action="/wbdiscover/home";
		document.product.submit();
	}
	/* Added for ENH-43 to display the World Book Student in the metanav*/ 
	else if(strProductName == "World Book Student") {
		document.product.action="/student/home";
		document.product.submit();
	}
	/*Added for ENH-83 to display Hispanica in the metanav*/
	else if(strProductName == "Hispánica Saber") {
		document.product.action="/hispanica/home";
		document.product.target="_blank";
		document.product.submit();
	}
	/* Added for ENH-97 to display the Living Green in the metanav*/ 
	else if(strProductName == "Living Green") {
		document.product.action="/digitallibraries/livinggreen/home";
		document.product.submit();
	}
	/* Added for ENH-97 to display the Early People in the metanav*/ 
	else if(strProductName == "Early Peoples") {
		document.product.action="/digitallibraries/earlypeoples/home";
		document.product.submit();
	}
	/* Added for ENH-112 to display Inventions in the metanav*/ 
	else if(strProductName == "Inventions and Discoveries") {
		document.product.action="/digitallibraries/inventions/home";
		document.product.submit();
	}
	/* Added for ENH-128 to display Reference Center in the metanav*/ 
	else if(strProductName == "World Book Online Reference Center"){
		document.product.action="/pl/referencecenter/home";
		document.product.submit();
	}
	/* Added for ENH-128 to display Info Finder in the metanav*/ 
	else if(strProductName == "World Book Online Info Finder"){
		document.product.action="/pl/infofinder/home";
		document.product.submit();
	}
	/* Added for ENH-128 to display for Kids in the metanav*/ 
	else if(strProductName == "World Book Online for Kids"){
		document.product.action="/pl/forkids/home";
		document.product.submit();
	}
	/* Added for WBDP-7 to display DL in the metanav*/
	else if(strProductName == "Dramatic Learning"){
		document.product.action="/dramaticlearning/home";
		document.product.submit();
	}
	else if(strProductName == "Early World of Learning"){
		 document.product.action="/ewol/home";
		 document.product.submit();
	}
	else if(strProductName == "World Book Web"){
                 document.product.action="/wb/products?ed=all";
                 document.product.submit();
        }
	else if(strProductName == "Welcome to Reading"){
                 document.product.action="/ewol/welcometoreading/home";
                 document.product.submit();
        }
	else if(strProductName == "Treks Travels"){
                 document.product.action="/ewol/trekstravels/home";
                 document.product.submit();
        }	
	else if(strProductName == "Know It"){
                 document.product.action="/ewol/knowit/home";
                 document.product.submit();
        }
	/* Added to display SciencePower in the metanav */
	else if(strProductName == "Science Power"){
		document.product.action="/sciencepower/home";
		document.product.submit();
	}
	
	return false;
}

function changeAction(d )
{
var a=d;
if(a==null || a=="null" ||  a=="")
document.LocalizationForm.action="localization";
else
document.LocalizationForm.action="localization?link="+a;
}

function finalAction()
{
document.LocalizationForm.action="home?stru="+document.LocalizationForm.stru.value+"&cnru="+document.LocalizationForm.cnru.value;
}

function checkAction(d)
{
var a=d;
if(!(a==null||a=="null"||a==""))
{
document.LocalizationForm.action="educators?link=localization";
}
}


