function fncOrder(v_iID, v_bIsEmailOrder)
{
	if(v_iID != '')
	{
		document.frmPBS.hdnID.value = v_iID;
		//document.frmPBS.action = '../order.asp';
		document.frmPBS.action = 'http://paradigmsolutions.co.za/order.asp';
		document.frmPBS.submit();
	}
	else
	{
		alert('Product/Service could not be identified.');
	}	
}

function fncOrderDealer(v_iID, v_bIsEmailOrder)
{
	if(v_iID != '')
	{
		document.frmPBS.hdnID.value = v_iID;
		document.frmPBS.action = '../shopping_cart/order_capture_email_dealer.asp';
		document.frmPBS.submit();
	}
	else
	{
		alert('Product/Service could not be identified.');
	}	
}

function fncOrderSpecial(v_iID, v_bIsEmailOrder)
{
	if(v_iID != '')
	{
		document.frmPBS.hdnID.value = v_iID;
		if(v_bIsEmailOrder == 0)
			document.frmPBS.action = 'server/shopping_cart/order_capture_card.asp';
		else	
			document.frmPBS.action = 'server/shopping_cart/order_capture_email.asp';
		document.frmPBS.submit();
	}
	else
	{
		alert('Product/Service could not be identified.');
	}	
}

function fncOrderDomain(v_iID, v_sDomain)
{

	if(v_iID != '')
	{
		document.frmPBS.hdnDomainName.value = v_sDomain;
		document.frmPBS.hdnID.value = v_iID;
		document.frmPBS.action = '../shopping_cart/order_domain.asp';
		document.frmPBS.submit();
	}
	else
	{
		alert('Domain could not be identified.');
	}	
}

