|
|
Contact <%=vpnetSession.getFranchiseName()%>
We do it all
Valpak provides a customized program tailored to your unique business needs. Remember, we take care of everything. We work with you from concept and design to delivery, providing the tools and attention you need for success.
To advertise with <%=vpnetSession.getFranchiseName()%>, contact:
<%=vpnetSession.getContactName()%>
<%
if(vpnetSession.getShowAddressFlag().equals("Y"))
{
if(vpnetSession.getAddress() != null)
{
out.println(vpnetSession.getAddress());
}
else
{
out.println("PO Box "+vpnetSession.getPoBox());
}
}
%>
<%=vpnetSession.getCity()%>, <%=vpnetSession.getState()%> <%=vpnetSession.getPostalCode()%>
<%
String Phone = "";
String area = "";
String code = "";
String num = "";
String newNumber = "";
if(vpnetSession.getPhone() != null)
{
Phone = vpnetSession.getPhone();
area = Phone.substring(0,3);
code = Phone.substring(3,6);
num = Phone.substring(6,10);
newNumber = area + "-" + code + "-" + num;
}
String fax = "";
String area2 = "";
String code2 = "";
String num2 = "";
String newNumber2 = "";
if(vpnetSession.getFax()!=null)
{
fax = vpnetSession.getFax();
area2 = fax.substring(0,3);
code2 = fax.substring(3,6);
num2 = fax.substring(6,10);
newNumber2 = area2 + "-" + code2 + "-" + num2;
}
%>
<%
if(vpnetSession.getShowPhoneFlag().equals("Y"))
{
%>
Phone: <%= newNumber%>
<%
}
if(vpnetSession.getShowFaxFlag().equals("Y"))
{
%>
Fax : <%= newNumber2%>
<%
}
%>
You may also request more information by completing the following form.
<%@ include file="/fhp/objects/fhp_footer_object.jsp" %>
|