/* showTips = function () {
	var list = document.getElementById('get-another-tip-list');
	if (list.style.display == 'block') {
		list.style.display = 'none';
	} else {
		list.style.display = 'block';
	}
}

getTip = function (view) {
	view = 'tip-'+view;
	document.getElementById('get-another-tip-list').style.display = 'none';
	document.getElementById(view).style.zIndex = 10;
	others = document.getElementById(view).parentNode.getElementsByTagName('DIV');
	for (i = 0; i < others.length; i++) {
		if (others[i].id != view) {
			others[i].style.zIndex = 9;
		}
	}
} */

window.onload = function () {
	initialize();
}

initialize = function () {
	getTip = document.createElement("p");
	getTip.id = "get-another-tip";
	getTip.textContent = "get another tip";
	getTip.onclick = showTip;
	document.getElementById("content").appendChild(getTip);
}

showTip = function () {
	tipTwo = document.getElementById('tip-one');
	tipOne = document.getElementById('tip-two');
	if (tipOne.style.zIndex == 10) {
		tipOne.style.zIndex = 8;
	} else {
		tipOne.style.zIndex = 10;
	}
}

/* opens a popup window that contains the revlon privacy policy web page. */

function PrivacyPopUp() {
	var varFooterPopLeft = (screen.availWidth / 2) - 200;		
	var varFooterPopTop = (screen.availHeight / 2) - 175;
	window.open("http://www.revlon.com/corporate/privacy.aspx","privacy_policy","top=" + varFooterPopTop + ",left=" + varFooterPopLeft + ",width=400,height=350,location=no,toolbar=no,scrollbars=yes");
}

/* opens a popup window that contains the revlon legal terms web page. */

function TermsPopUp() {
	var varFooterPopLeft = (screen.availWidth / 2) - 200;		
	var varFooterPopTop = (screen.availHeight / 2) - 175;
	window.open("http://www.revlon.com/corporate/terms.aspx","terms_of_use","top=" + varFooterPopTop + ",left=" + varFooterPopLeft + ",width=400,height=350,location=no,toolbar=no,scrollbars=yes");
}

/* opens a popup window that contains the revlon for discolored nails web page.  This link is found behind the corresponding image rollover. */

function ForDiscoloredNailsPopUp() {
	var varFooterPopLeft = (screen.availWidth / 2) - 400;		
	var varFooterPopTop = (screen.availHeight / 2) - 375;
	window.open("http://www.revlon.com/product.asp?ProductID=21786&Mode=catalog","for_discolored_nails","top=" + varFooterPopTop + ",left=" + varFooterPopLeft + ",width=800,height=725,location=no,toolbar=no,scrollbars=yes");
}

/* opens a popup window that contains the revlon web page that corresponds to the navigation footer link. */

function RevlonPopUp(RevlonURL) {
	var varFooterPopLeft = (screen.availWidth / 2) - 400;		
	var varFooterPopTop = (screen.availHeight / 2) - 375;
	window.open(RevlonURL,"RevlonPopup","top=" + varFooterPopTop + ",left=" + varFooterPopLeft + ",width=800,height=725,location=no,toolbar=no,scrollbars=yes");
}