
  function breadcrumbs(section, level)
  {
  	sSection = section;
    sDelimiter = ' > ';
	sSubDelimiter = ' :: ';
	sLevel = level;
    var sURL = (location.pathname.indexOf('?') != -1) ? location.pathname.substring(0, location.pathname.indexOf('?')) : location.pathname;
        sURL = (location.pathname.charAt(0) == '/') ? location.pathname.substring(1) : location.pathname;
    var aURL = sURL.split('/');
	
	
    if(aURL)
    {
	  var sOutput = '<a href="http://www.collegeanswer.com">College Answer</a> ' + sDelimiter + ' '; 
      if (sLevel > 1)
	  {
	  	sOutput += '<a href="http://counselor.collegeanswer.com">Counselor Resource</a> ' + sDelimiter + ' '; 
      }
	  var sPath = '/';
      for(var i = 0; i < aURL.length; i++)
      {
        sPath += aURL[i] + '/';
        <!-- sOutput += '<a href="' + sPath + '"'; -->
         <!--  if(sClass) sOutput += ' class="' + sClass +'"';  -->
		
  
    } 
	if (sLevel > 1) 
		 { 
        <!-- 	sOutput += '>' + aURL[i] + '</a>';  -->
       sOutput +=	 sSection + sSubDelimiter;
		} 
      sOutput += document.title;
      document.write(sOutput);
    }
  }


function OpenPrivacyPolicy(sLocation) {
var w = 1000, h = 800;

if (document.all) {
   /* the following is only available after onLoad */
   w = document.body.clientWidth;
   h = document.body.clientHeight;
}
else if (document.layers) {
   w = window.innerWidth;
   h = window.innerHeight;
}

var popW = 860, popH = 580;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open(sLocation, 'NewWin', 'height=580,width=860,alwaysRaised=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,top='+topPos+',left='+leftPos)
}