function addToFavoritesNew() { 
    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(pageName, urlAddress,"");
    } else if( window.external ) { // IE Favorite
        window.external.AddFavorite( urlAddress, pageName); 
    }else { 
        alert("Sorry! Your browser doesn't support this function."); 
    } 
 }

//------------------------------------------------------------------------------------------------------------------------------

function emailPage() {

  var subject = "Interesting item on University of Phoenix website";
  var body = 
      "I thought you'd be interested in this item from University of Phoenix:\r\n\r\n" +
      urlAddress;

  // BUILD MAIL MESSAGE COMPONENTS 
  var doc = "mailto:?subject=" +
     escape(subject) + 
     "&body=" + escape(body); 

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}

//------------------------------------------------------------------------------------------------------------------------------

function previouspageurl() {
 var ppurl=document.location.href;
 	 var url="link.php?ppul="+ppurl;
 	window.open(url,"download","left=55,top=15,resizable=no,toolbar=0,menubar=0,location=0,scrollbars=1,status=0,width=525,height=550");
 }

//------------------------------------------------------------------------------------------------------------------------------

function changeBg(divId,imgName)
{
	var div_tag=document.getElementById(divId);
	div_tag.style.backgroundImage="url(" + imgName + ")"; 
	//alert("url(" + imgName + ")");
}
//------------------------------------------------------------------------------------------------------------------------------

function openSmallWindow(url)
{
	window.open(url,"_blank","screenX=0,screenY=0,outerWidth=650,outerHeight=540,left=0,top=0,alwaysRaised=true,resizable=0,toolbar=0,menubar=0,location=0,scrollbars=1,status=1,copyhistory=0,width=650, height=540");
	
}
//------------------------------------------------------------------------------------------------------------------------------

var elearn=null;
        function showElearn()
        {
            if(elearn==null)
            {                
                elearn = window.open("http://study.abscdl.org","elearn","scrollbars=yes,menubar=no,toolbar=no,titlebar=no,location=no,statusbar=no,resizable=yes,fullscreen=no,directories=no,left=0,top=0,width=800,height=600");
                elearn.focus();
                return true;
            }
            else
            {
                if(elearn.closed)
                {
                    elearn=null;
                    elearn = window.open("http://study.abscdl.org","elearn","scrollbars=yes,menubar=no,toolbar=no,titlebar=no,location=no,statusbar=no,resizable=yes,fullscreen=no,directories=no,left=0,top=0,width=800,height=600");
                    elearn.focus();
                    return true;
                }
                else
                {
                    elearn.focus();
                    return false;
                }
                
            }
        }

//------------------------------------------------------------------------------------------------------------------------------
