﻿function showsecurityhelp()
{
	window.open("securitycode.htm","","dependent=1, titlebar=0, toolbar=0, resizable=0, width=500, height=450");	
}

function PrintPopup(orderRef)
{
    var baseUrl = document.location.href;
    var shopString = '/shop/';
    baseUrl = baseUrl.substring(0, baseUrl.indexOf(shopString) + shopString.length);
	window.open(baseUrl + "Checkout5Print.aspx?orderRef=" + orderRef,"","dependent=1,height=700,width=640,titlebar=no,toolbar=0,resizable=0,left=10,top=1,scrollbars=1");
}

function BasketBack()
{
    document.location.href = "http://www.three.ie/";
}

function SelectPricePlan(categpryID,productID,pricePlanId,pricePlanPackageId,attributeId,attributeRowId)
{
	var noRows, validchoice;
	validchoice = true;

	if (document && document.forms[0] &&  document.forms[0].hMVCount)
	{noRows = document.forms[0].hMVCount.value;}
	
	if (!(document && document.forms[0] &&  document.forms[0].hCanBuy))
	{
		document.forms[0].action = "productdetail.aspx?pid=" + productID + "&loc=P&add=1";	
		document.forms[0].submit(this);
	}
	else
	{
		if(document.forms[0].hCanBuy.value == "N")
		{
			alert('There is no product available for these options.\n\nPlease choose again.');
		}
		else
		{
			for(i=0; i < noRows; i++){
				thisDropDown = "document.forms[0].mv_" + i + "[document.forms[0].mv_" + i + ".selectedIndex].value";
				thisDropDown = eval(thisDropDown);
				
				if(thisDropDown == "none")
				{
					validchoice = false;
				}
			}
			if (validchoice == true){
				document.forms[0].action = "priceplan.aspx?pid=" + productID + "&loc=PP&add=1&attid=" + attributeId + "&attrowid=" + attributeRowId;
				document.forms[0].submit(this);
			}
				else{alert('Please select your preferred option(s)');
			}
		}
	}
}
