// restricted_functions.js

/*
 * (c) Copyright 2008 Hen's Teeth Network. All rights reserved. www.hens-teeth.net
 */
 
function mediaed_checkRestrictedTerms(oForm)
{
	if (oForm.addtocart_agree.checked) 
	{
		return true;
	}
	else
	{
		alert('You must agree to our terms and conditions in order to purchase this item.');
		return false;
	}
}

function mediaed_checkRestrictedTermsForPreview(oCheckbox)
{
	alert(oCheckbox.id + " " + oCheckbox.checked);
	if (oCheckbox.checked) 
	{
		return true;
	}
	else
	{
		alert('You must agree to our terms and conditions in order to purchase this item.');
		return false;
	}
}

function mediaed_checkForBackorder(oCheckbox)
{
	
	if (oCheckbox.addtocart_agree.checked) 
	{
		return true;
	}
	else
	{
		alert('You must acknowledge that you are pre-ordering this item (by checking the box below the pricing information) in order to place it in your cart.');
		return false;
	}
}

function mediaed_checkForBackorder2(oCheckbox)
{
	
	if (oCheckbox.addtocart_agree.checked) 
	{
		return true;
	}
	else
	{
		alert('You must acknowledge that this DVD is on back-order (by checking the box below the pricing information) in order to place it in your cart.');
		return false;
	}
}

// Used for PRICE of PLEASURE product - SKU = 235
function mediaed_setRestrictedBlocks(sCustCatName)
{
	var sKey = document.getElementById('dvd_key').value;
	var oPriceDiv1 = document.getElementById('restrictedPrice1');
	var oPriceDiv2 = document.getElementById('restrictedPrice2'); 
	var flagNotForSale = false;
	
	
	if (-1 != sCustCatName.indexOf('Home'))
	{
		//oPriceDiv1.innerHTML = sCustCatName + ": This film is currently not available for home-use.";
		//flagNotForSale = true;
		var oDiv1 = document.getElementById('dl_div_1');
		var oDiv2 = document.getElementById('dl_div_2');
		oDiv1.innerHTML = '<p>Not available for this licensing level.</p>';
		oDiv2.innerHTML = '';
	}
	
	if (-1 != sCustCatName.indexOf('School'))
	{
		oPriceDiv1.innerHTML = sCustCatName + ": This film is not available to high schools. It contains clips from pornographic films, not suitable for viewers under 18.";
		flagNotForSale = true;
	}
	
	if (flagNotForSale)
	{
		oPriceDiv2.innerHTML = "";
	}
	
}


function mediaed_setRestrictedEduBlocks(sCustCatName)
{
	var sKey = document.getElementById('dvd_key').value;
	var oPriceDiv1 = document.getElementById('restrictedEdu1');
	var oPriceDiv2 = document.getElementById('restrictedEdu2'); 
	var flagNotForSale = false;
	
	if (-1 != sCustCatName.indexOf('Home'))
	{
		oPriceDiv1.innerHTML = sCustCatName + ": MEF is the educational distributor for this film. To purchase for home-use, go to: <a href='http://www.indebtwetrust.org' target='_blank'>www.indebtwetrust.org</a>";
		flagNotForSale = true;
	}
	
	if (flagNotForSale)
	{
		oPriceDiv2.innerHTML = "";
	}
	
}

function mediaed_setRestricted_NA2009(sCustCatName)
{
	var oPriceDiv1 = document.getElementById('restrictedPrice1');
	var oPriceDiv2 = document.getElementById('restrictedPrice2'); 
	var oDiscH3 = document.getElementById('discount_h3');
	var oDisc1 = document.getElementById('discount_div_1');
	var oDisc2 = document.getElementById('discount_div_2');
	var oDL1 = document.getElementById('dl_div_1');
	
	var flagNotForSale = false;
	
	if (-1 != sCustCatName.indexOf('Home')) // Looking for Home-use customers
	{
		oPriceDiv1.innerHTML = sCustCatName + ": $29.95<br>This film is currently not available for online purchase at this licensing level. Please call 1.800.897.0089 to order. Thank you!";
		
		oDiscH3.style.display = 'none';
		oDisc1.style.display = 'none';
		oDisc2.style.display = 'none';
		
		oDL1.innerHTML = '<p>Not applicable.</p>';
		
		flagNotForSale = true;
	}
	
	if (flagNotForSale)
	{
		oPriceDiv2.innerHTML = "";
	}
	
}