Created
August 1, 2017 06:46
-
-
Save LitvinenkoD89/29e6ae1c54f927858557a3f3b9446bb3 to your computer and use it in GitHub Desktop.
pappas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="keywords" content="Pappas Restaurants"><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Pappas.com - Pappas Locations</title> | |
<link href="../global/css/global.css" type="text/css" rel="stylesheet" /> | |
<link href="../global/css/jqModal.css" type="text/css" rel="stylesheet" /> | |
<!--[if (gt IE 5)&(lt IE 7)]> | |
<link href="../global/css/ie6.php?quickPath=../" rel="stylesheet" type="text/css" /> | |
<![endif]--> <script type="text/javascript"> | |
// JavaScript Document | |
function toggleMyLocation() { | |
mypdx = document.getElementById('myLocPop'); | |
if(mypdx.style.display == 'block') | |
mypdx.style.display = 'none'; | |
else | |
mypdx.style.display = 'block'; | |
//mypdx.style.zIndex = 10; | |
} | |
function hideMyLocation() { | |
mypdx = document.getElementById('myLocPop'); | |
mypdx.style.display = 'none'; | |
//mypdx.style.zIndex = -1; | |
} | |
function focusMiniSearch() { | |
theinput = document.getElementById('cityOrZip'); | |
if(theinput.value == 'City & ST, or ZIP') | |
theinput.value = ''; | |
theinput.className = 'cityOrZipAfterFocus'; | |
} | |
function formatPhone(phoneNum) { | |
phoneNum += ''; | |
if(phoneNum.length != 10) return(phoneNum);//give it back just like it came | |
sArea = phoneNum.substr(0,3); | |
sPrefix = phoneNum.substr(3,3); | |
sNumber = phoneNum.substr(6,4); | |
phoneNum = "("+sArea+") "+sPrefix +"-"+sNumber; | |
return phoneNum; | |
} | |
function checkLocation(theBrand) { | |
// Set the optional parameter if needed | |
if ( theBrand === undefined ) { theBrand = 'all'; } | |
//alert(theBrand); | |
theCity = document.getElementById('city').value; | |
theState = document.getElementById('state').value; | |
theZip = document.getElementById('zipcode').value; | |
if(theZip != '') { | |
$.post("/finder/checkLoc.php", { zipcode: theZip, findBrand: theBrand }, function(data){ processLocResult(data); }, "text"); | |
} else if(theCity != '') { | |
$.post("/finder/checkLoc.php", { city: theCity, state: theState, findBrand: theBrand }, function(data){ processLocResult(data); }, "text"); | |
} else { | |
$.post("/finder/checkLoc.php", { zipcode: '', findBrand: theBrand }, function(data){ processLocResult(data); }, "text"); | |
} | |
} | |
function checkLocationFind(findvalue, theBrand) { | |
// Set the optional parameter if needed | |
if ( theBrand === undefined ) { theBrand = 'all'; } | |
//alert(theBrand); | |
theCity = document.getElementById('city').value; | |
theState = document.getElementById('state').value; | |
theZip = document.getElementById('zipcode').value; | |
if(theZip != '') { | |
$.post("/finder/checkLoc.php", { zipcode: theZip }, function(data){ processLocResult(data); }, "text"); | |
} else if(theCity != '') { | |
$.post("/finder/checkLoc.php", { city: theCity, state: theState, lookfor: findvalue, findBrand: theBrand }, function(data){ processLocResult(data); }, "text"); | |
} else { | |
$.post("/finder/checkLoc.php", { zipcode: '', lookfor: findvalue, findBrand: theBrand }, function(data){ processLocResult(data); }, "text"); | |
} | |
} | |
/* | |
function checkLocationJobs() { | |
theCity = document.getElementById('city').value; | |
theState = document.getElementById('state').value; | |
theZip = document.getElementById('zipcode').value; | |
if(theZip != '') { | |
$.post("/finder/checkLoc.php", { zipcode: theZip, jobs: 'true' }, function(data){ processLocResult(data); }, "text"); | |
} else if(theCity != '' && theState != '') { | |
$.post("/finder/checkLoc.php", { city: theCity, state: theState, jobs: 'true' }, function(data){ processLocResult(data); }, "text"); | |
} else { | |
locPop('Error', 'Please provide a location.'); | |
return; | |
} | |
} | |
*/ | |
function checkLocationMini() { | |
theCityOrZip = document.getElementById('cityOrZip').value; | |
if(theCityOrZip == 'City & ST, or ZIP') theCityOrZip = ''; | |
//if(theCityOrZip != '' && theCityOrZip != 'City & ST, or ZIP') { | |
$.post("/finder/checkLoc.php", { cityOrZip: theCityOrZip, findBrand: 'all' }, function(data){ processLocResult(data); }, "text"); | |
//} else { | |
// locPop('', 'We did not receive any information in the form. Please check your entry and try again.<br><br><strong>Enter your city, state or ZIP to find a location near you!</strong>'); | |
// return; | |
//} | |
} | |
function processLocResult(theLocCount) { | |
//alert(theLocCount); | |
if(theLocCount === 'noaddy') { | |
window.location = '/locations-list/?msg=noaddy'; | |
} else if(theLocCount === '' || theLocCount === null) { | |
window.location = '/locations-list/?msg=blank'; | |
} else if(theLocCount == 0) { //what does blank result mean? should we redirect with err instead? | |
window.location = '/locations-list/?msg=none'; | |
} else if(isUnsignedInteger(theLocCount) && theLocCount >= 1) { | |
window.location="/locations/"; //locations were found, we need to redirect... | |
} else { | |
//checkLoc.php returned something unexpected | |
window.location = '/locations-list/?msg=err'; | |
} | |
} | |
function isUnsignedInteger(s) { | |
return (s.toString().search(/^[0-9]+$/) == 0); | |
} | |
/********************************************************** | |
POP MESSAGE FUNCTIONS | |
*/ | |
function locPop(msgHdr, theMsg) { | |
document.getElementById('locMsgHdr').innerHTML = msgHdr; | |
if(msgHdr == '') | |
document.getElementById('locMsgHdr').style.display = 'none'; | |
else | |
document.getElementById('locMsgHdr').style.display = 'block'; | |
document.getElementById('theLocMsg').innerHTML = theMsg; | |
$('#locPop').jqmShow(); | |
} | |
function closeLocMsg() { | |
$('#locPop').jqmHide(); | |
} | |
function closeFlashMsg() { | |
$('#flashPop').jqmHide(); | |
} | |
</script> | |
<script src="../global/js/simpleswap.js" language="javascript" type="text/javascript"></script> | |
<script src="../global/js/jquery-1.3.2.min.js" language="javascript" type="text/javascript"></script> | |
<script src="../global/js/jqModal.js" language="javascript" type="text/javascript"></script> | |
<script src="../global/js/jquery.cycle.min.js" language="javascript" type="text/javascript"></script> | |
<script src="../global/js/swfobject.js" language="javascript" type="text/javascript"></script> | |
<!--[if (gt IE 5)&(lt IE 7)]> | |
<script type="text/javascript" src="../global/js/iepngfix_v2/iepngfix_tilebg.js"></script> | |
<![endif]--> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$('#locPop').jqm(); | |
$('#eclubPop').jqm(); | |
}); | |
</script> | |
<script type="text/javascript" language="javascript"> | |
function showManagement() { | |
$('#levelHourly').css('display', 'none'); | |
$('#levelInterns').css('display', 'none'); | |
$('#levelManagement').css('display', 'block'); | |
} | |
function showInterns() { | |
$('#levelHourly').css('display', 'none'); | |
$('#levelManagement').css('display', 'none'); | |
$('#levelInterns').css('display', 'block'); | |
} | |
function showHourly() { | |
$('#levelManagement').css('display', 'none'); | |
$('#levelInterns').css('display', 'none'); | |
$('#levelHourly').css('display', 'block'); | |
} | |
function showEligible() { | |
$('#donreqboxWhatFund').css('display', 'none'); | |
$('#donreqboxEligible').css('display', 'block'); | |
} | |
function showWhatFund() { | |
$('#donreqboxEligible').css('display', 'none'); | |
$('#donreqboxWhatFund').css('display', 'block'); | |
} | |
function showWhatHunger() { | |
$('#whatHunger').css('display', 'block'); | |
$('#whatLiteracy').css('display', 'none'); | |
$('#whatCommunity').css('display', 'none'); | |
$('#whatCivic').css('display', 'none'); | |
} | |
function showWhatLiteracy() { | |
$('#whatHunger').css('display', 'none'); | |
$('#whatLiteracy').css('display', 'block'); | |
$('#whatCommunity').css('display', 'none'); | |
$('#whatCivic').css('display', 'none'); | |
} | |
function showWhatCommunity() { | |
$('#whatHunger').css('display', 'none'); | |
$('#whatLiteracy').css('display', 'none'); | |
$('#whatCommunity').css('display', 'block'); | |
$('#whatCivic').css('display', 'none'); | |
} | |
function showWhatCivic() { | |
$('#whatHunger').css('display', 'none'); | |
$('#whatLiteracy').css('display', 'none'); | |
$('#whatCommunity').css('display', 'none'); | |
$('#whatCivic').css('display', 'block'); | |
} | |
function showEntry() { | |
$('#hourlyPopAdv').css('display', 'none'); | |
$('#hourlyPopEntry').css('display', 'block'); | |
$('#hourlyPop').jqmShow(); | |
} | |
function showAdv() { | |
$('#hourlyPopAdv').css('display', 'block'); | |
$('#hourlyPopEntry').css('display', 'none'); | |
$('#hourlyPop').jqmShow(); | |
} | |
function showEntrySection(sectionName) { | |
$('#hourlyPopDoorHost').css('display', 'none'); | |
$('#hourlyPopServer').css('display', 'none'); | |
$('#hourlyPopBusser').css('display', 'none'); | |
$('#hourlyPopCook').css('display', 'none'); | |
$('#hourlyPopDishwasher').css('display', 'none'); | |
$('#hourlyPop' + sectionName).css('display', 'block'); | |
} | |
function showAdvSection(sectionName) { | |
$('#hourlyPopTrainer').css('display', 'none'); | |
$('#hourlyPopHeadwaiter').css('display', 'none'); | |
$('#hourlyPopBartender').css('display', 'none'); | |
$('#hourlyPopActivityDirector').css('display', 'none'); | |
$('#hourlyPopOfficeSupportStaff').css('display', 'none'); | |
$('#hourlyPopFloorSupervisor').css('display', 'none'); | |
$('#hourlyPop' + sectionName).css('display', 'block'); | |
} | |
</script><script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=AIzaSyAIuMnX0NSV5roYX0e2mri57WysLxqRTiU&sensor=false"></script> | |
<script src="jquery.scrollable-0.13.js" language="javascript" type="text/javascript"></script> | |
<script src="v3functions.js" language="javascript" type="text/javascript"></script> | |
<script src="infobox.js" language="javascript" type="text/javascript"></script> | |
<link href="locations.css" type="text/css" rel="stylesheet" /> | |
<script type="text/javascript"> | |
var address = '35004'; | |
var searchLat = '33.6015246'; | |
var searchLng = '-86.4895463'; | |
var radius = '100'; | |
var map; | |
var side_bar_html = ""; | |
var gmarkers = []; | |
var ginfoboxes = []; | |
var theScroller = 'noscroll'; | |
var grandDescriptor = "Pappas Restaurant"; | |
var siteId = 11; | |
var conceptLocPath = new Array(); | |
conceptLocPath[1] = 'https://pappasitos.com/location/'; | |
conceptLocPath[2] = 'https://pappadeaux.com/location/'; | |
conceptLocPath[3] = 'http://pappasseafood.com/location/'; | |
conceptLocPath[4] = 'http://pappasbbq.com/location/'; | |
conceptLocPath[5] = 'http://yiayiamarys.com/location/'; | |
conceptLocPath[6] = 'http://pappasburger.com/location/'; | |
conceptLocPath[7] = 'http://www.pappasgrillhouston.com/location/'; | |
conceptLocPath[8] = 'http://pappasbros.com/location/'; | |
conceptLocPath[9] = 'http://pappascatering.com/location/'; | |
conceptLocPath[10] = 'http://pappasbbqcatering.com/location/'; | |
conceptLocPath[12] = 'http://pappas.com/restaurants/dot-coffee-shop/'; | |
conceptLocPath[13] = 'http://pappasdelivery.com/our-services/'; | |
conceptLocPath[16] = 'http://pappasmeatco.com/location/'; | |
function showAll() { | |
grandDescriptor = "Pappas Restaurant"; | |
grandDescriptorPlural = "Pappas Restaurants"; | |
// NO TABS FOR PAPPAS.COM | |
// document.getElementById('tab1').src = 'images/loc_tab_site.png'; | |
// document.getElementById('tab2').src = 'images/loc_tab_all_on.png'; | |
load('all'); | |
document.getElementById('thePromo').innerHTML = rlr2; | |
} | |
function showSite() { | |
grandDescriptor = "Pappasito's"; | |
grandDescriptorPlural = "Pappasito's"; | |
document.getElementById('tab1').src = 'images/loc_tab_site_on.png'; | |
document.getElementById('tab2').src = 'images/loc_tab_all.png'; | |
load('site'); | |
document.getElementById('thePromo').innerHTML = rlr1; | |
} | |
function updatePageNumbers() { | |
scrollerStatus = theScroller.getStatus(); | |
document.getElementById("displayStart").innerHTML = scrollerStatus.index + 1; | |
document.getElementById("displayEnd").innerHTML = scrollerStatus.index + 4; | |
document.getElementById("totalCount").innerHTML = scrollerStatus.total; | |
document.getElementById("displayStart2").innerHTML = scrollerStatus.index + 1; | |
document.getElementById("displayEnd2").innerHTML = scrollerStatus.index + 4; | |
document.getElementById("totalCount2").innerHTML = scrollerStatus.total; | |
setGrandCount(); | |
} | |
function noScroller() { | |
document.getElementById('scrollerNav1').style.display = 'none'; | |
document.getElementById('scrollerNav2').style.display = 'none'; | |
setGrandCount(); | |
} | |
function showScroller() { | |
document.getElementById('scrollerNav1').style.display = 'block'; | |
document.getElementById('scrollerNav2').style.display = 'block'; | |
setGrandCount(); | |
} | |
function setGrandCount() { | |
if(gmarkers.length == 0) | |
grandMsg = "There are 0 " + grandDescriptorPlural + " in your area."; | |
else if(gmarkers.length == 1) | |
grandMsg = "There is 1 " + grandDescriptor + " in your area."; | |
else | |
grandMsg = "There are " + gmarkers.length + " " + grandDescriptorPlural + " in your area."; | |
document.getElementById("grandCountMsg").innerHTML = grandMsg; | |
} | |
function nextPage() { | |
theScroller.nextPage(); | |
updatePageNumbers(); | |
} | |
function prevPage() { | |
theScroller.prevPage(); | |
updatePageNumbers(); | |
} | |
var rlr1 = '<a target="_blank" href="http://www.pappas.com/gift-cards/"><img src="http://files.pappas.com/images/dyn/promos/5306.jpg" id="locPromo2" /></a>'; | |
var rlr2 = '<a target="_blank" href="http://www.pappas.com/careers/"><img src="http://files.pappas.com/images/dyn/promos/11815.jpg" id="locPromo2" /></a>'; | |
function load(show) { | |
map = new google.maps.Map(document.getElementById('map'), { | |
center: new google.maps.LatLng(searchLat, searchLng), | |
mapTypeId: google.maps.MapTypeId.ROADMAP, | |
disableDefaultUI: true, | |
zoomControl: true, | |
zoomControlOptions: { | |
style: google.maps.ZoomControlStyle.SMALL, | |
position: google.maps.ControlPosition.LEFT_TOP | |
} | |
}); | |
google.maps.event.addListener(map, 'dragstart', function() { closeAllInfoboxes(); }); | |
google.maps.event.addListener(map, 'zoom_changed', function() { closeAllInfoboxes(); }); | |
searchLocationsNear(show); | |
} | |
function searchLocationsNear(show) { | |
var centerPosition = map.getCenter(); | |
if(show == "all") { | |
var searchUrl = 'xml_all.php?lat=' + centerPosition.lat() + '&lng=' + centerPosition.lng() + '&radius=' + radius; | |
} | |
else { //restaurant concept specific | |
var searchUrl = 'xml_site.php?lat=' + centerPosition.lat() + '&lng=' + centerPosition.lng() + '&radius=' + radius; | |
} | |
downloadUrl(searchUrl, function(data) { | |
var xml = parseXml(data); | |
var markers = xml.documentElement.getElementsByTagName('marker'); | |
var resultsList = document.getElementById('resultsList'); | |
resultsList.innerHTML = ''; | |
if (markers.length == 0) { | |
resultsList.innerHTML = 'No results found.'; | |
return; | |
} | |
var bounds = new google.maps.LatLngBounds(); | |
gmarkers.length = 0; | |
ginfoboxes.length = 0; | |
side_bar_html = ""; | |
for (var i = 0; i < markers.length; i++) { | |
var locId = markers[i].getAttribute('locId'); | |
var conId = markers[i].getAttribute('conId'); | |
var conName = markers[i].getAttribute('conName'); | |
var name = markers[i].getAttribute('name'); | |
var address = markers[i].getAttribute('address'); | |
var queryAddress = markers[i].getAttribute('queryAddress'); | |
var street = markers[i].getAttribute('street'); | |
var city = markers[i].getAttribute('city'); | |
var phone = formatPhone(markers[i].getAttribute('phone')); | |
var phoneToGo = formatPhone(markers[i].getAttribute('phoneToGo')); | |
var distance = parseFloat(markers[i].getAttribute('distance')); | |
var lat = markers[i].getAttribute('lat'); | |
var lng = markers[i].getAttribute('lng'); | |
var point = new google.maps.LatLng(parseFloat(lat), parseFloat(lng)); | |
var toGoMenu = markers[i].getAttribute('toGoMenu'); | |
var infoWinHtml = '<img src="images/loc_infowin'+conId+'.gif" class="infoWinLogo">'; | |
infoWinHtml += '<div class="infoWin"><a href="'; | |
if(conId != siteId && conceptLocPath[conId] != '') infoWinHtml += conceptLocPath[conId]; else infoWinHtml += '../location/'; | |
infoWinHtml += '?id='+locId+'">'+name+'</a><br />'+street+'<br />'+city; | |
infoWinHtml += '<br /><br /><a href="'; | |
if(conId != siteId && conceptLocPath[conId] != '') infoWinHtml += conceptLocPath[conId]; else infoWinHtml += '../location/'; | |
infoWinHtml += '?id='+locId+'">See more about this location</a><br />'; | |
if(conId == siteId) infoWinHtml += '<!--<a href="../location-map/?id='+locId+'">Get directions</a>-->'; | |
infoWinHtml += '</div>'; | |
markerIndex = i; | |
gmarkers.push( createMarker(point, name, address, conId, markerIndex) ); | |
ginfoboxes.push( createInfobox(infoWinHtml, markerIndex) ); | |
bounds.extend(point); | |
if(i % 2) colorClass = "resultItem"; else colorClass = "resultItem gray"; | |
side_bar_html += '<div class="' + colorClass +'" id="scroller'+i+'"><a href="javascript:myclick(' + (gmarkers.length-1) + ')">' + name + '</a><br/>' + street + '<br/>' + city + '<br/>' + phone + '<br/><strong>' + distance.toFixed(1) + ' miles</strong> '; if(conId == siteId) side_bar_html += '<a href="../location-map/?id=' + locId + '">View larger map</a>'; | |
side_bar_html += '<a href="'; | |
if(conId != siteId && conceptLocPath[conId] != '') side_bar_html += conceptLocPath[conId]; else side_bar_html += '../location/'; | |
side_bar_html += '?id=' + locId + '" class="menusLink">View Menus<br>& Restaurant<br>Profile</a></div>'; | |
} | |
document.getElementById("resultsList").innerHTML = side_bar_html; | |
if(gmarkers.length > 4) { | |
$("div.scrollable").scrollable({vertical:true, size:4, keyboard:false}); | |
theScroller = $("div.scrollable").scrollable(); | |
updatePageNumbers(); | |
showScroller(); | |
} else { | |
noScroller(); | |
} | |
map.setCenter( bounds.getCenter() ); | |
map.fitBounds(bounds); | |
if(gmarkers.length == 1) { | |
// if we only have one marker, we don't want our zoom to be too tight | |
map.setZoom(13); | |
} | |
}); | |
}//function searchLocationsNear(show) | |
topMarkerZIndex = 1; | |
function createMarker(point, name, address, conId, markerIndex) { | |
var image = 'images/loc_marker' + conId + '.png'; | |
var marker = new google.maps.Marker({ | |
map: map, | |
position: point, | |
icon: image | |
}); | |
google.maps.event.addListener(marker, 'click', function() { | |
closeAllInfoboxes(); | |
// check current zoom level, zoom in tighter if need be | |
if(map.getZoom() < 13) { | |
map.setZoom(13); | |
} | |
map.panTo(marker.getPosition()); | |
// bring it to the front | |
this.setZIndex(topMarkerZIndex++); | |
ginfoboxes[markerIndex].open(map, gmarkers[markerIndex]); | |
updateScroller(markerIndex); | |
}); | |
return marker; | |
} | |
function createInfobox(infoWinHtml, markerIndex) { | |
var boxText = document.createElement("div"); | |
boxText.style.cssText = "font-size: 11px; width: 172px; height: 122px; padding: 10px 15px 30px 10px;"; | |
boxText.innerHTML = infoWinHtml; | |
var myOptions = { | |
content: boxText, | |
disableAutoPan: false, | |
maxWidth: 0, | |
zIndex: null, | |
boxStyle: { | |
background: "url('images/loc_infopop_full.png') no-repeat", | |
opacity: 1, | |
width: "197px" | |
}, | |
closeBoxMargin: "10px 14px 2px 2px", | |
closeBoxURL: "images/close.gif", | |
infoBoxClearance: new google.maps.Size(1, 1), | |
isHidden: false, | |
pane: "floatPane", | |
enableEventPropagation: false, | |
alignBottom: true, | |
pixelOffset: new google.maps.Size(-48, 3) | |
}; | |
var ib = new InfoBox(myOptions); | |
return ib; | |
} | |
function closeAllInfoboxes() { | |
for(i=0; i < ginfoboxes.length; i++) { | |
ginfoboxes[i].close(); | |
} | |
} | |
function myclick(i) { | |
google.maps.event.trigger(gmarkers[i], "click"); | |
} | |
var currentScroller = ''; | |
var currentIndex = ''; | |
function updateScroller(scrollerNum) { | |
if(currentScroller != '') { | |
if(currentIndex % 2) colorClass = "resultItem"; else colorClass = "resultItem gray"; | |
currentScroller.className = colorClass; | |
} | |
currentIndex = scrollerNum; | |
theItemDivId = 'scroller'+scrollerNum; | |
if(scrollerNum % 2) colorClass = "resultItem"; else colorClass = "resultItem gray"; | |
currentScroller = document.getElementById(theItemDivId); | |
currentScroller.className = colorClass + ' selectedLoc'; | |
if(theScroller != 'noscroll') { | |
theScroller.seekTo(scrollerNum); | |
updatePageNumbers(); | |
} | |
} | |
</script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
showAll(); | |
$('#locPop').jqm(); | |
}); | |
</script> | |
</head> | |
<body> | |
<div id="container"> | |
<div id="wrapper"> | |
<div id="header"> | |
<a href="../home/"><img src="../global/images/logo.png" alt="Pappas Restaurants" name="hdrLogoSpacer" width="270" height="136" id="hdrLogo" class="pngImg" /></a> | |
<form action="javascript: checkLocationMini();" id="frmQuickSearch"> | |
<img src="../global/images/hdr_find.png" id="hdrFind" alt="Find a Pappas Restaurant Near You" /> | |
<input type="text" id="cityOrZip" name="cityOrZip" value="City & ST, or ZIP" onfocus="javascript: focusMiniSearch();" /> | |
<a href="javascript: void(0);"><img src="../global/images/hdr_go.png" oversrc="../global/images/hdr_go_on.png" id="hdrGo" onclick="javascript: checkLocationMini();" /></a> | |
</form> | |
<ul id="hdrTerNav"><li><a href="../promotions/"><img src="../global/images/hdr_ternav_promotions.png" oversrc="../global/images/hdr_ternav_promotions_on.png" alt="Get Exclusive Promotions" /></a></li><li><img src="../global/images/hdr_ternav_divider.png" /></li><li><a href="../site-map/"><img src="../global/images/hdr_ternav_sitemap.png" oversrc="../global/images/hdr_ternav_sitemap_on.png" alt="Site Map" /></a></li><li><img src="../global/images/hdr_ternav_divider.png" /></li><li><a href="../contact-us/"><img src="../global/images/hdr_ternav_contactus.png" oversrc="../global/images/hdr_ternav_contactus_on.png" alt="Contact Us" /></a></li></ul> | |
<img src="../global/images/nav_top.png" name="hdrNavTop" width="989" height="12" class="pngImg" id="hdrNavTop" /> | |
<ul id="hdrNav"><li><img src="../global/images/nav_left.png" width="56" height="49" class="pngImg" /></li><li><a href="../about/"><img src="../global/images/nav_about.png" oversrc="../global/images/nav_about_on.png" alt="About" /></a></li><li><a href="../restaurants/"><img src="../global/images/nav_restaurants.png" oversrc="../global/images/nav_restaurants_on.png" alt="Restaurants" /></a></li><li><a href="../careers/"><img src="../global/images/nav_careers.png" oversrc="../global/images/nav_careers_on.png" alt="Careers" /></a></li><li><img src="../global/images/nav_mid.png" width="260" height="49" /></li><li><a href="../gift-cards/"><img src="../global/images/nav_giftcards.png" oversrc="../global/images/nav_giftcards_on.png" alt="Gift Cards" /></a></li><li><a href="../community-relations/"><img src="../global/images/nav_relations.png" oversrc="../global/images/nav_relations_on.png" alt="Relations" /></a></li><li><img src="../global/images/nav_right.png" width="60" height="49" class="pngImg" /></li></ul> | |
<img src="../global/images/nav_btm.png" name="hdrNavBtm" width="989" height="12" class="pngImg" id="hdrNavBtm" /> | |
</div> | |
<div id="contentWrapper"> | |
<img src="images/loc_ttl.png" id="locTtl" alt="Find your preferred location and click on 'See more about this location.'" /> | |
<div id="mapframe"> | |
<img src="images/loc_mapframe_top.png" id="mapframeTop" class="pngImg" /> | |
<img src="images/loc_mapframe_left.png" id="mapframeLeft" class="pngImg" /> | |
<img src="images/loc_mapframe_right.png" id="mapframeRight" class="pngImg" /> | |
<img src="images/loc_mapframe_btm.png" id="mapframeBtm" class="pngImg" /> | |
<div id="map"></div> | |
</div> | |
<div id="locHr1"> </div> | |
<div id="locHr2"> </div> | |
<div id="resultsContainer"> | |
<div id="grandCountMsg">There are # Pappas Restaurants in your area.</div> | |
<div id="newSearchLink"><a href="../finder/">New Search >></a></div> | |
<span class="scrollerNav" id="scrollerNav1"><a href="javascript: void(0);" onclick="javascript: prevPage();">prev</a> <span id="displayStart">1</span>-<span id="displayEnd">4</span> of <span id="totalCount">#</span> locations <a href="javascript: void(0);" onclick="javascript: nextPage();">next</a></span> | |
<div class="scrollable"> | |
<div id="resultsList" class="items"></div> | |
</div> | |
<span class="scrollerNav" id="scrollerNav2"><a href="javascript: void(0)" onclick="javascript: prevPage();">prev</a> <span id="displayStart2">1</span>-<span id="displayEnd2">4</span> of <span id="totalCount2">#</span> locations <a href="javascript: void(0);" onclick="javascript: nextPage();">next</a></span> | |
</div> | |
<div id="locPromos"> | |
<a target="_blank" href="http://pappascatering.com/home/"><img src="http://files.pappas.com/images/dyn/promos/6287.jpg" id="locPromo1" /></a><a target="_blank" href="http://www.pappas.com/gift-cards/"><img src="http://files.pappas.com/images/dyn/promos/5306.jpg" id="locPromo2" /></a><a target="_blank" href="http://www.pappas.com/careers/"><img src="http://files.pappas.com/images/dyn/promos/11815.jpg" id="locPromo3" /></a> </div> | |
</div> | |
<div id="footer"> | |
<img src="../global/images/ftr_hr.png" id="footerHr" /> | |
<table cellpadding="0" cellspacing="0" border="0"> | |
<tr> | |
<td valign="top"> | |
<div id="footerLeft"> | |
<strong>Site Map</strong><br /> | |
<a href="../home/">Home</a><br /> | |
<a href="../about/us/">About Us</a><br /> | |
<a href="../restaurants/">Our Restaurants</a><br /> | |
<a href="../careers/">Careers</a><br /> | |
<a href="../gift-cards/">Gift Cards</a><br /> | |
<a href="../community-relations/">Community Relations</a><br /> | |
<a href="../finder/">Restaurant Locator</a><br /> | |
<a href="../about/news-and-events/">News and Events</a><br /> | |
<a href="../contact-us/">Contact Us</a><br /> | |
<a href="../site-map/">Site Map</a><br /> | |
<a href="../promotions/">Get Exclusive Promotions</a><br> | |
<a href="../locations-list/">List of Locations</a><br /> | |
<a href="../terms-of-use/">Terms of Use</a><br /> | |
<a href="../privacy-policy/">Privacy Policy</a> | |
</div> | |
</td> | |
<td valign="top"> | |
<div id="footerMiddle"> | |
<strong>Restaurants</strong><br /> | |
<a href="http://pappadeaux.com" target="_blank">Pappadeaux Seafood Kitchen</a><br /> | |
<a href="http://pappasitos.com" target="_blank">Pappasito's Cantina</a><br /> | |
<a href="http://pappasbros.com" target="_blank">Pappas Bros. Steakhouse</a><br /> | |
<a href="http://pappasseafood.com" target="_blank">Pappas Seafood House</a><br /> | |
<a href="http://pappasbbq.com" target="_blank">Pappas Bar-B-Q</a><br /> | |
<a href="http://pappasburger.com" target="_blank">Pappas Burger</a><br /> | |
<a href="http://yiayiamarys.com" target="_blank">Yia Yia Mary's Mediterranean Kitchen</a><br /> | |
<!--<a href="http://pappasmeatco.com" target="_blank">Pappas Meat Co.</a><br />--> | |
<!--<a href="#" target="_blank">Dot Coffee Shop</a><br />--> | |
</div> | |
</td> | |
<td valign="top"> | |
<div id="footerRight"> | |
<strong>Catering & Delivery</strong><br /> | |
<a href="http://www.pappascatering.com/" target="_blank">Pappas Catering</a><br /> | |
<a href="http://www.pappasbbqcatering.com/" target="_blank">Pappas Bar-B-Q Catering</a><br /> | |
<a href="http://www.pappasdelivery.com/" target="_blank">Pappas Delivery</a><br /><br /> | |
© 2017 PRI | |
</div> | |
</td> | |
</tr> | |
</table> | |
</div> </div> | |
</div> | |
<div id="locPop" class="jqmWindow"> | |
<img src="../global/images/popin_shadow.png" width="386" height="226" class="popShadow" /> | |
<img src="../global/images/popin_bg.png" width="367" height="207" class="popCard" /> | |
<div id="locPopContent"> | |
<div id="locMsgHdr">The Header!</div> | |
<div id="theLocMsg">the message</div><br /> | |
<div id="locMsgBtn"><a href="javascript:void(0);" onclick="javascript: closeLocMsg();">Close [x]</a></div> | |
</div> | |
</div><div id="eclubPop" class="jqmWindow"> | |
<img src="../global/images/popin_shadow.png" width="386" height="226" class="popShadow" /> | |
<img src="../global/images/popin_bg.png" width="367" height="207" class="popCard" /> | |
<div id="eclubPopContent"> | |
<div id="eclubMsgHdr">Pappas Email Clubs</div> | |
<div id="eclubLocMsg"> | |
Please select the brands from which you'd like to receive offers and special promotions. <br /><br /> | |
<a href="http://pappadeaux.fbmta.com/members/UpdateProfile.aspx?Action=Subscribe&InputSource=W" target="_blank">Pappadeaux Seafood Kitchen</a><br /> | |
<a href="http://pappasitos.fbmta.com/members/UpdateProfile.aspx?Action=Subscribe&InputSource=W" target="_blank">Pappasito's Cantina</a><br /> | |
<a href="https://secure.murgent.com/emopt/index.php?id=5392" target="_blank">Pappas Seafood House</a><br /> | |
<a href="http://pappasbrossteakhouse.fbmta.com/members/UpdateProfile.aspx?Action=Subscribe&InputSource=W" target="_blank">Pappas Bros. Steakhouse</a> | |
</div> | |
</div> | |
<div id="eclubMsgBtn"><a href="javascript:void(0);" onclick="javascript: $('#eclubPop').jqmHide();">Close [x]</a></div> | |
</div><script type="text/javascript"> | |
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | |
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); | |
</script> | |
<script type="text/javascript"> | |
try { | |
var pageTracker = _gat._getTracker("UA-9464667-13"); | |
pageTracker._trackPageview(); | |
} catch(err) {}</script></body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment