document.write('<HTML><HEAD><TITLE>Why bio-algae concentrates are the future in supplementation</TITLE>')
document.write('<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">')
document.write('<LINK href="css/stylesheet.css" type=text/css rel=stylesheet>')
document.write('<META content="MSHTML 6.00.2900.2722" name=GENERATOR></HEAD>')
document.write('<BODY text=#444444 vLink=#d5620d aLink=#ff6600 link=#d5620d bgColor=#E9E9E9 background="">')

// POP UP CODE
function NewWindow(mypage, myname, w, h, scroll)
{
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// END POP UP CODE

/* 
 * Cross-browser event handling, by Scott Andrew
 */
function addEvent(element, eventType, lamdaFunction, useCapture) {
    if (element.addEventListener) {
        element.addEventListener(eventType, lamdaFunction, useCapture);
        return true;
    } else if (element.attachEvent) {
        var r = element.attachEvent('on' + eventType, lamdaFunction);
        return r;
    } else {
        return false;
    }
}

/* 
 * Kills an event's propagation and default action
 */
function knackerEvent(eventObject) {
    if (eventObject && eventObject.stopPropagation) {
        eventObject.stopPropagation();
    }
    if (window.event && window.event.cancelBubble ) {
        window.event.cancelBubble = true;
    }
    
    if (eventObject && eventObject.preventDefault) {
        eventObject.preventDefault();
    }
    if (window.event) {
        window.event.returnValue = false;
    }
}

//Safari doesnt support canceling events in the standard way, so we must hard-code a return of false for it to work.

function cancelEventSafari() {
    return false;        
}

/* 
 * Cross-browser style extraction, from the JavaScript & DHTML Cookbook
 * <http://www.oreillynet.com/pub/a/javascript/excerpt/JSDHTMLCkbk_chap5/index5.html>
 */
function getElementStyle(elementID, CssStyleProperty) {
    var element = document.getElementById(elementID);
    if (element.currentStyle) {
        return element.currentStyle[toCamelCase(CssStyleProperty)];
    } else if (window.getComputedStyle) {
        var compStyle = window.getComputedStyle(element, '');
        return compStyle.getPropertyValue(CssStyleProperty);
    } else {
        return '';
    }
}

/* 
 * CamelCases CSS property names. Useful in conjunction with 'getElementStyle()'
 * From <http://dhtmlkitchen.com/learn/js/setstyle/index4.jsp>
 */
function toCamelCase(CssProperty) {
    var stringArray = CssProperty.toLowerCase().split('-');
    if (stringArray.length == 1) {
        return stringArray[0];
    }
    var ret = (CssProperty.indexOf("-") == 0)
              ? stringArray[0].charAt(0).toUpperCase() + stringArray[0].substring(1)
              : stringArray[0];
    for (var i = 1; i < stringArray.length; i++) {
        var s = stringArray[i];
        ret += s.charAt(0).toUpperCase() + s.substring(1);
    }
    return ret;
}

/*
 * Disables all 'test' links, that point to the href '#', by Ross Shannon
 */
function disableTestLinks() {
  var pageLinks = document.getElementsByTagName('a');
  for (var i=0; i<pageLinks.length; i++) {
    if (pageLinks[i].href.match(/[^#]#$/)) {
      addEvent(pageLinks[i], 'click', knackerEvent, false);
    }
  }
}

/* 
 * Cookie functions
 */
function createCookie(name, value, days) {
    var expires = '';
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days*24*60*60*1000));
        var expires = '; expires=' + date.toGMTString();
    }
    document.cookie = name + '=' + value + expires + '; path=/';
}

function readCookie(name) {
    var cookieCrumbs = document.cookie.split(';');
    var nameToFind = name + '=';
    for (var i = 0; i < cookieCrumbs.length; i++) {
        var crumb = cookieCrumbs[i];
        while (crumb.charAt(0) == ' ') {
            crumb = crumb.substring(1, crumb.length); /* delete spaces */
        }
        if (crumb.indexOf(nameToFind) == 0) {
            return crumb.substring(nameToFind.length, crumb.length);
        }
    }
    return null;
}

function eraseCookie(name) {
    createCookie(name, '', -1);
}

// end util functions


/*
 * Clear Default Text: functions for clearing and replacing default text in
 * <input> elements.
 */
addEvent(window, 'load', init, false);

function init() {
    var formInputs = document.getElementsByTagName('input');
    for (var i = 0; i < formInputs.length; i++) {
        var theInput = formInputs[i];
        
        if (theInput.type == 'text' && theInput.className.match(/\bcleardefault\b/)) {  
            /* Add event handlers */          
            addEvent(theInput, 'focus', clearDefaultText, false);
            addEvent(theInput, 'blur', replaceDefaultText, false);
            
            /* Save the current value */
            if (theInput.value != '') {
                theInput.defaultText = theInput.value;
            }
        }
    }
}

function clearDefaultText(e) {
    var target = window.event ? window.event.srcElement : e ? e.target : null;
    if (!target) return;
    
    if (target.value == target.defaultText) {
        target.value = '';
    }
}

function replaceDefaultText(e) {
    var target = window.event ? window.event.srcElement : e ? e.target : null;
    if (!target) return;
    
    if (target.value == '' && target.defaultText) {
        target.value = target.defaultText;
    }
}

// end clear function


document.write('<TABLE cellSpacing=0 cellPadding=0 width=625 align=center border=0>')
document.write('<TBODY><TR>')
document.write('<TD colSpan=3><A href="index.html"> ')
document.write('<IMG height=46 src="http://www.themagicisbac.com/bac-files/topimage.jpg" width=650></A></TD></TR>')
document.write('<TR><TD colSpan=3><IMG height=10 src="bac-files/spacer.gif" width=10></TD></TR>')
document.write('<TR><TD width=25 bgColor=#ffffff><IMG height=25 src="http://www.themagicisbac.com/bac-files/spacer.gif" width=25></TD>')
document.write('<TD vAlign=top width=625 bgColor=#ffffff>')

document.write('<TABLE cellSpacing=10 cellPadding=0 width="625" border=0 align=center><TR>')
document.write('<TABLE cellSpacing=10 cellPadding=0 width="625" border=0 align=center>')
document.write('<FONT face=Arial size=-2><br>')
document.write('<FONT face=Arial size=3>')
document.write('<STRONG>A Quantum Leap in Holistic Nutrition with Bio-Algae Concentrates</STRONG>')
document.write('<FONT size=2> <BR>by Roland Thomas, BSc, ND, of <A href="http://www.quantumleapwellness.com/index.html" target=new>')
document.write('Quantum Leap Wellness</A>')

// <!-- SEARCH -->
document.write('<td></td>')
document.write('<FORM ACTION="http://search.freefind.com/find.html" METHOD="GET"  target="_self">')
document.write('<INPUT TYPE="HIDDEN" NAME="id" VALUE="70695037">')
document.write('<INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r">')
document.write('<INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL">')
document.write('<INPUT type="HIDDEN" name="n" value="0">')
document.write('<TD><FONT size=1><INPUT TYPE="TEXT" NAME="query" SIZE="21" class="cleardefault" value="Enter your criteria to ---->" style="font-size:9pt; border:1px solid #CC6600" onFocus="clearText(this)"></TD>')
document.write('<TD><FONT size=1><INPUT TYPE="SUBMIT" VALUE="Search this site" style="font-size:9pt;"></TD>')
document.write('</FORM>')
//<!-- END SEARCH -->

// <!-- JOIN NEWSLETTER	-->
document.write('<td></td>')
document.write('<form name="ccoptin" action="http://ui.constantcontact.com/d.jsp" target="_blank" method="post" style="margin-bottom:2;">')
document.write('<input type="hidden" name="m" value="1011306087098">')
document.write('<input type="hidden" name="p" value="oi">')
document.write('<TD><FONT size=1><input type="text" name="ea" size="20" class="cleardefault" value="Enter your email to ---->" style="font-size:9pt; border:1px solid #CC6600" onFocus="clearText(this)"></TD>')
document.write('<TD><FONT size=1><input type="submit" name="go" value="Subscribe" style="font-size:9pt;" ></TD></form></td>')
// <!-- END JOIN NEWSLETTER -->

document.write('</tr></table>')
document.write('<TABLE cellSpacing=10 cellPadding=0 width="625" border=0>')
document.write('<HR SIZE=1><P align=center><font face=arial size=2>')

//<!--EDIT BELOW CODE TO YOUR OWN MENU-->

document.write('</layer>')

//<!--END OF EDIT-->

			
