// JavaScript Document
<!--
var accept = function()
{
	var isChecked = this.document.confirmbox.agreeBox.checked;
	if(isChecked)
	{
		window.open("https://www.rbsapplynow.com/RBS_InstantApp_ADM/Welcome.do?promoCode=PB");
	}
	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 = function()
{
	window.top.close();
}
-->