function setadultIcons() {
    var div = document.createElement("div");
    div.setAttribute("id", 'adult_icon');
	div.style.width = "25px";
    div.style.height = "24px";
    div.style.top = "278px";
    if (navigator.appVersion.indexOf("Mac") != -1) {
        div.style.left = (pageWidth() / 2) - 366 + "px";
    }
    else {
        div.style.left = (pageWidth() / 2) - 376 + "px";
    }
    div.style.position = "absolute";
    div.innerHTML = "<a href='http://www.nwnaturalproducts.com/vitafusion' target='_blank'><img src='images/adultvite_button.png' border='0'></a>";
    div.zIndex = 5;
    document.body.appendChild(div);

window.onresize = resetIcons;
}
function resetIcons()
{
	var div = document.getElementById('adult_icon');
	if (navigator.appVersion.indexOf("Mac") != -1) {
	    div.style.left = (pageWidth() / 2) - 366 + "px";
	}
	else {
	    div.style.left = (pageWidth() / 2) - 376 + "px";
	}
}
// Browser Window Size and Position
// copyright Stephen Chapman, 3rd Jan 2005, 8th Dec 2005
// you may copy these functions but please keep the copyright notice as well
function pageWidth() {
    return window.innerWidth != null ? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;
}
function pageHeight() {
    return window.innerHeight != null ? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null ? document.body.clientHeight : null
}
