// JavaScript Document
var searchString = document.location.search;
var iFrameUrl ='' ;

// strip off the leading '?'
searchString = searchString.substring(1);

var nvPairs = searchString.split("&");

for (i = 0; i < nvPairs.length; i++)
{
     var nvPair = nvPairs[i].split("=");
     var name = nvPair[0];
     var value = nvPair[1];
	 
	 if (nvPair[0] == "loc")
	 {
		iFrameUrl = 'loc=' +  nvPair[1] ;	 
	 } 
}

if (iFrameUrl.length > 0)
{
	document.write('<iframe id="atmlocator" src="http://unfcu.locatorsearch.com/ATMBranchDtls.aspx?' + iFrameUrl + '" height="1100" width="700" name="atmlocator" frameborder="0" allowtransparency="true" scrolling="auto">Your browser doesn\'t support iframes</iframe>');
}
else
{
	document.write('<iframe id="atmlocator" src="http://unfcu.locatorsearch.com/index.aspx" height="1100" width="700" name="atmlocator" frameborder="0" allowtransparency="true" scrolling="auto">Your browser doesn\'t support iframes</iframe>');
}


