// JavaScript Document

// LOADS CPs ONLY
function loadCP(passedCP, destination) {
	var base1 = "http://counterpixel.niveausa.com/cgi-bin/PageImp.exe?/nivea/us/ext/highlights/specials/";
	var base2 = "http://counterpixel1.niveausa.com/cgi-bin/PageImp.exe?/nivea/us/ext/highlights/specials/";
	var promoName = "nbc_sst_video";
	var onloadHandler;
	if (destination) {onloadHandler = "onload='cpReady(\""+destination+"\")'";}
	else if (!passedCP) {passedCP = "main_submit.nopv"; onloadHandler = "onload='cpReady()'";}
	else {onloadHandler = "";}

	document.getElementById("cpDiv1").innerHTML = "<img src='"+base1+promoName+"/"+passedCP+"' height='0' width='0' "+onloadHandler+" />";
	document.getElementById("cpDiv2").innerHTML = "<img src='"+base2+promoName+"/"+passedCP+"' height='0' width='0' "+onloadHandler+" />";

}

function cpReady(destination) {
	cpCount++;
	if (cpCount == 2) {
		cpCount = 0; // safeguard just in case there is more than one nopv click on the page
		if (destination) {parent.location.href = destination;}
		else {document.forms[0].submit();}
	}
}
