

function displayPaymentCenter(location, address, city, state, zip, phone, fax, all_centers)
{

   if ( zip == "00000")
   {
	   	pcWindow = window.open("","PaymentCenter","toolbar=no,width=460,height=100,scrollbar=no,menubar=no");
		pcWindow.document.write("<html>");
		pcWindow.document.write("<head>");
		pcWindow.document.write("<style>#fields {font-family:Arial, Helvetica, sans-serif;font-size:10px;}</style>");
		pcWindow.document.write("<title>Payment Center</title>");
		pcWindow.document.write("</head>");
		pcWindow.document.write("<body>");
   		pcWindow.document.write("<tr>");
		pcWindow.document.write("<td id='fields'>No Payment Center located in this area.</td>");
		pcWindow.document.write("<br>");
		pcWindow.document.write("<td id='fields'>Please call Customer Service <b>1-866-755-2225</b>.</td>");
		pcWindow.document.write("</tr>");
		pcWindow.document.write("</body>");
		pcWindow.document.write("</html>"); 
		pcWindow.document.close();

		self.name="main";


   }
   else
   {

	pcWindow = window.open("","PaymentCenter","toolbar=no,width=460,height=100,scrollbar=no,menubar=no");

	pcWindow.document.write("<html>");
	pcWindow.document.write("<head>");
	pcWindow.document.write("<style>#headers {font-family:Arial, Helvetica, sans-serif;font-size:12px;background-color:#dedcdc;}</style>");
	pcWindow.document.write("<style>#leftHeaderData{padding-left:10px}</style>");
	pcWindow.document.write("<style>#rightHeaderData{padding-right:10px}</style>");
	pcWindow.document.write("<style>#fields{font-family:Arial, Helvetica, sans-serif;font-size:11px;color:#000080;}</style>");
	pcWindow.document.write("<style>table{border:#d8d8d8; border-style:solid; border-width:1px;}</style>");
	pcWindow.document.write("<title>"+location+" "+"Payment Center</title>");
	pcWindow.document.write("</head>");
	
	pcWindow.document.write("<body>");
	pcWindow.document.write("<table align='center 'cellspacing=0 cellpadding=0>");

	pcWindow.document.write("<tr id='headers'>");
	pcWindow.document.write("<td id='leftHeaderData' width=180><b>Location</b></td>");
	pcWindow.document.write("<td width=120><b>Phone Number</b></td>");
	pcWindow.document.write("<td id='rightHeaderData' width=150 align='right'><b>Fax Number</b></td>");
	pcWindow.document.write("</tr>");
	
	pcWindow.document.write("<tr  id='fields'>");
	pcWindow.document.write("<td id='leftHeaderData'>"+address+"</td>");
	pcWindow.document.write("<td>"+phone+"</td>");
	pcWindow.document.write("<td align='right' id='rightHeaderData'>"+fax+"</td>");
	pcWindow.document.write("</tr>");

	pcWindow.document.write("<tr  id='fields'>");
	pcWindow.document.write("<td id='leftHeaderData'>"+city+", "+state+" "+zip+ "</td>");
	pcWindow.document.write("<td>&nbsp;</td>");
	pcWindow.document.write("</tr>");

	pcWindow.document.write("<tr>");
	pcWindow.document.write("<td>&nbsp;</td>");
	pcWindow.document.write("<td>&nbsp;</td>");
	pcWindow.document.write("</tr>");

	pcWindow.document.write("</table>");
	pcWindow.document.write("</body>");
	pcWindow.document.write("</html>");
	pcWindow.document.close();

	self.name="main";
   }



}
