// JavaScript Document
<!--
var accept_everyday = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		window.open("https://www.rbsapplynow.com/RBS_InstantApp_ADM/Welcome.do?promoCode=COCH&sourceCell=HTEP001");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}
var decline_everyday = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		alert("Please click on the \"accept\" button to proceed.");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}


var accept_accelerator = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		window.open("https://www.rbsapplynow.com/RBS_InstantApp_ADM/Welcome.do?promoCode=COCH&sourceCell=HTAC001");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}
var decline_accelerator = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		alert("Please click on the \"accept\" button to proceed.");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}


var accept_customcash = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		window.open("https://www.rbsapplynow.com/RBS_InstantApp_ADM/Welcome.do?promoCode=COCH&sourceCell=HTCC001");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}
var decline_customcash = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		alert("Please click on the \"accept\" button to proceed.");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}


var accept_plat = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		window.open("https://www.rbsapplynow.com/RBS_InstantApp_ADM/Welcome.do?promoCode=C1PP");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}
var decline_plat = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		alert("Please click on the \"accept\" button to proceed.");
	}
	else
	{
		alert("You must agree to the terms and conditions to proceed. Please check the checkbox and then click the \"continue\" button to apply.");
	}
}

-->