//if (utilJsInclude!='1'){//include these functions if util.js is not included
//Begin Head Dom Functions
function findDomFile(file){
 //find file in the DOM - works for .js, .css, .jpg, .gif, and .png
 fileFound=false;
 if (file.indexOf('.js')>=0){
 tag='script';
 attr='src';
 }else if(file.indexOf('.css')>=0){
 tag='link';
attr='href';
 }else if(file.indexOf('.jpg')>=0 || file.indexOf('.gif')>=0 || file.indexOf('.png')>=0){
 tag='img';
 attr='src';
 }else {return fileFound;}
 //traverse the DOM and search for file backwards
 var allsuspects=document.getElementsByTagName(tag)
 for (var i=allsuspects.length; i>=0; i--){
 if (allsuspects[i] && allsuspects[i].getAttribute(attr)!=null && allsuspects[i].getAttribute(attr).indexOf(file)!=-1){
 fileFound=true;//file found in the DOM
 break;
 }
 }
 return fileFound;
}
function loadJs(file){
 jsFound=false;
 var tag='script';
 var attr='src';
 jsFound=findDomFile(file);
 if (!jsFound){
 //add the file to the DOM if the file was NOT found in the DOM
 var head=document.getElementsByTagName('head')[0];
 var script=document.createElement('script');
 script.type='text/javascript';
 var varScriptPath=file
 script.src=varScriptPath;
 head.appendChild(script);
 }
}
function loadCss(file){
 cssFound=false;
 var tag='link';
 var attr='href';
 cssFound=findDomFile(file);
 if (!cssFound){
 //add the file to the DOM if the file was NOT found in the DOM
 var fileref='';
 var loadedobjects='';
 fileref=document.createElement("link")
 fileref.setAttribute("rel", "stylesheet");
 fileref.setAttribute("type", "text/css");
 fileref.setAttribute("href", file);
 document.getElementsByTagName("head").item(0).appendChild(fileref)
 }
}
//End Head Dom Functions
//}

loadJs('https://disney.go.com/features/javascript/featuresGlobal.js');//popup disclaimer

//Begin Baby Einstein Footer
document.write('<div style="font-family: verdana, sans-serif; font-weight:normal; text-decoration:none; font-size:10px; color:#000000;padding-bottom:10px">')
document.write('&copy; The Baby Einstein Company, LLC. All Rights Reserved.<br>');
document.write('<i>Little Einsteins</i> and the Little Einsteins logo are trademarks<br>');
document.write('of The Baby Einstein Company, LLC. All Rights Reserved.<br>');
document.write('EINSTEIN and ALBERT EINSTEIN are trademarks of The Hebrew University<br>');
document.write('of Jerusalem. All Rights Reserved. <a href="javascript:deliverPopDisclaimer(\'http://www.albert-einstein.org\')">www.albert-einstein.org</a>');
document.write('</div>');
//End Baby Einstein Footer

