﻿if ( document.getElementById("Pages") )
{
	var objPages = document.getElementById("ctl00_uxPlaceHolder_uxProductFormView_uxProductDetails_TXT_NoOfPages");
	document.getElementById("Pages").value = objPages.value;
	document.getElementById("RightMainSection").style.display='none';
}
else
{
	document.getElementById("CustomTopMenu").style.display='none';
}
	
if ( document.getElementById("Urgency") )
{
	var objUrgency = document.getElementById("ctl00_uxPlaceHolder_uxProductFormView_uxProductDetails_TXT_Urgency");
	document.getElementById("Urgency").value = objUrgency.value;
}

if ( document.getElementById("Pages") )
{
	for(var nCount=aPrice.length-1; nCount>=0; nCount--)
	{
		if ( aPrice[nCount][0] == document.getElementById("Pages").value+'#'+document.getElementById("Urgency").value )
		{
			var objOptionDrop = document.getElementById("ctl00_uxPlaceHolder_uxProductFormView_uxProductDetails_uxOptionGroupDetails_uxOptionDataList_ctl00_uxOptionItemDetails_uxOptionDropDownItem_uxOptionDrop");
			objOptionDrop.value = aPrice[nCount][1];
			var objPrice = document.getElementById("ctl00_uxPlaceHolder_uxProductFormView_uxProductDetails_LBL_Price");
			objPrice.innerHTML = aPrice[nCount][2];
		}
	}
}
