// This function is used to clear a pair of controls' values.
function ClearFields(ctl1, ctl2)
{
	ctl1.value = "";
	ctl2.value = "";
}

function ClearFields3(ctl1, ctl2, ctl3)
{
	ctl1.value = "";
	ctl2.value = "";
	ctl3.value = "";
}

function popFindingPIN()
{
	myWindow = window.open("", "clientWindow", 'dependent=yes,width=350,height=300,scrollbars') 
	//myWindow.document.write("To create your personal access Password, you will need the generic 6-digit PIN number found on the top right hand corner of your credential information form or on your credential package mailing label.  This PIN can also be found on your locals per capita invoice.")
	myWindow.document.write("To create your personal access Password, you will need the generic 6-digit PIN number found on your locals per capita invoice.<BR><BR>If you have any questions or don't have your local PIN please email <a href='mailto:billinginquiry@aft.org'>billinginquiry@aft.org</a> or call 1-888-8PERCAP (1-888-873-7227).<BR><BR><BR>Thanks")
	myWindow.document.bgColor="lightblue"
	myWindow.document.close() 
}
function popSmallWindow(address)
{
	myWindow = window.open(address, "clientWindow", 'dependent=yes,location=yes,menubar=yes,scrollbars,resizable')
}