function findDocumentControl(Document, ctrlId)
{
	var frm = Document.forms(0);
	var ctrl = null;
	/* Try the easy way */
	ctrl = Document.getElementById(ctrlId);

    /* or the hard way */	
	if (ctrl == null)
	{
        for (var i=0; i<frm.elements.length; i++)
        {
	        if (frm.elements[i].name.indexOf(ctrlId) > -1)
	        {
		        ctrl = frm.elements(i);
		        i = frm.elements.length;
	        }
        }
	}
	
	return ctrl;
}
function findControl(ctrlId)
{
    return findDocumentControl(document, ctrlId);
}
function getValue(ctrl)
{
	var val = 0;
	var s = "";
	if (ctrl != null)
		if (ctrl.value != "")
		{
			s = ctrl.value;
			while (s.indexOf(",") > -1)
			{
				s = s.replace(",", "");
			}
			if (isFinite(s))
				val = parseFloat(s);
		}
	return val;
}
function iterateElements()
{
	var frm = document.forms(0);
	var field = null;
	for (var i=0; i < frm.elements.length; i++)
	{
		field = frm.elements[i];
		alert(field.name + field.name.indexOf(":txt"));
	}
}
/* Fellowship One Interface functions */
function f1LaunchLogin(){
window.open("https://integration.fellowshipone.com/integration/login.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchNewUser(){
window.open("https://integration.fellowshipone.com/integration/newuser.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=yes")
}

function f1LaunchLoginHelp(){
window.open("https://integration.fellowshipone.com/integration/loginhelp.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=yes")
}

function f1LaunchOnlineGiving(){
window.open("https://integration.fellowshipone.com/integration/contribution/onlinecontribution.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}


function f1LaunchLogout(){
window.open("https://integration.fellowshipone.com/integration/logout.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchGroupFinder(){
window.open("https://integration.fellowshipone.com/integration/activityfinder/activityfinder.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==&mCode=&aCode=", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchRegistration(){
window.open("https://integration.fellowshipone.com/integration/registration/eventregistration.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==&fCode=", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchVolunteerApplication(){
window.open("https://integration.fellowshipone.com/integration/volunteer/volunteerapplication.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==&appCode=", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchGroupMgr(){
window.open("https://integration.fellowshipone.com/integration/smallgroup/sgmembers.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==&aCode=", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchContactMgr(){
window.open("https://integration.fellowshipone.com/integration/contact/onlinecontact.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==&ctCode=", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchRelationshipMgr(){
window.open("https://integration.fellowshipone.com/integration/Relationship/RelationshipNotes.aspx?cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}

function f1LaunchFormBuilder(FormCode){
window.open("https://integration.fellowshipone.com/integration/FormBuilder/FormBuilder.aspx?fCode=" + FormCode + "&cCode=hGrkvaxE61BuYYNcKECosQ==", "","width=800,height=600,top=100,left=100,resizeable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=1")
}
/* End - Fellowship One */