// Flash header Script
// Zila theme

if(window.attachEvent) //IE
{
	window.attachEvent("onload", _initPageFunction);
}
else if(window.addEventListener) //DOM
{
	window.addEventListener("load", _initPageFunction, false);
}

// Function used to initialize all functions used in page
function _initPageFunction()
{
	_initLogo();
	_hideNewsletter();
	_initCouponBox();
}

// function that insert a link over the logo in the header of the page for SEO
function _initLogo()
{
	if(document.getElementById('contentLogo'))
	{
		var oDivLogo = document.getElementById('contentLogo');
		if(oDivLogo){oDivLogo.innerHTML = '<a id="zilaLogo" href="/" title="Zila - a TOLMAR Company">Zila - a TOLMAR Company</a>';}
	}
}

function _hideNewsletter()
{
	if(document.getElementById("oucCreateAccount_chkSubscribeNewsLetter"))
	{
		document.getElementById("oucCreateAccount_chkSubscribeNewsLetter").parentNode.style.display = "none";
	}
}


function _initCouponBox()
{

	if(document.getElementById('oucOrderView_oucCoupon_divAddCoupon'))
	{
		document.getElementById('oucOrderView_oucCoupon_divAddCoupon').style.display = 'inline';
		
	}

}