// 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_setRestrictedHTSAR(sCustCatName)
{
	var sKey = document.getElementById('dvd_key').value;
	var oPriceDiv1 = document.getElementById('restrictedHTSAR');
	var oPriceDiv2 = document.getElementById('restrictedHTSAR2');
	var flagNotForSale = false;
	
	if (-1 != sCustCatName.indexOf('Grass') ||
		-1 != sCustCatName.indexOf('Nonprofit') ||
		-1 != sCustCatName.indexOf('Church') ||
		-1 != sCustCatName.indexOf('Military'))
	{
		oPriceDiv1.innerHTML = sCustCatName + ": MEF is the educational distributor for this film. To purchase non-academic public screening rights, please contact <a href='http://www.7thart.com/films/How-To-Start-A-Revolution' target='_blank'>7th Art Releasing</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 = "";
	}
	
}



function mediaed_setRestricted_Glocester18(sSKU, sCat, s)
{
	// Handle full-length-preview-restriction block
	
	if (
		-1 != sCat.indexOf('College') ||
		-1 != sCat.indexOf('School') ||
		-1 != sCat.indexOf('University') ||
		-1 != sCat.indexOf('Grass') ||
		-1 != sCat.indexOf('Educator') ||
		-1 != sCat.indexOf('Nonprofit')
		)
	{
		// Allow viewing of preview
		s.push('<p>Low-resolution preview is strictly for purchase consideration. <span class="red italic">Not for classroom use. </span>');
		s.push('<a href="/cgi-bin/commerce.cgi?preadd=action&amp;key=' + sSKU + '&amp;template=PDGCommTemplates/HTN/Item_Preview.html"> <img border="0" src="/PDGCommTemplates/HTN/images/play_up.jpg" alt="Play" align="top" onMouseOver="javascript:this.src=\'/PDGCommTemplates/HTN/images/play_over.jpg\'" onMouseOut="javascript:this.src=\'/PDGCommTemplates/HTN/images/play_up.jpg\'"></a></p>');
		$("#full-length-preview-restriction").html(s.join(''));
	}
	else
	{
		$("#full-length-preview-restriction").html("<p>Online previewing is not available for this licensing level. Please call 1.800.897.0089.</p>");
	}
}
