// Puts up a confirm box to make sure they want the DPL promo.
function ConfirmDPL() {

	var chkDPL = document.getElementById('chkDPL');
	var blWantsDPL;

	try {

		if(chkDPL.checked) {


			blWantsDPL = confirm("Yes, please give me a FREE 30-day trial to Eli Journals' Business Productivity Super Bundle, an online collection of over 14,000 articles that show you how to save time, money, and effort with the software you use every day like Microsoft Office, Windows, Adobe graphic design programs and more!\n\nAll the training journals in this information-packed arsenal will be at your fingertips 24/7 if you decide to continue service and you'll be charged the monthly rate of $9.95 after your initial trial period. Or cancel in the first 30 days at 1-800-223-8720 and continue using the service for the duration of your pre-paid term.");

			if(!blWantsDPL) {
				chkDPL.checked = false;
			}


		}


	}

	catch(err) {
		//If here, then chkDPL was probably taken out.
	}

}


//Makes sure that DPL is preselected if the user has JavaScript.
function PreCheckDPL() {
	try {
		var chkDPL = document.getElementById('chkDPL');
		var blWantsDPL;

		chkDPL.checked = true;
	}

	catch(err) {
		//If here, then chkDPL was probably taken out.
	}

}
function confremo()
{
	document.getElementById("chkDPL").checked = false;
	document.getElementById("divremove").style.visibility='hidden';
	document.getElementById("divremove").style.display='none';
	document.getElementById("divremove").style.position='relative';
	//alert("ssdn");
}
