// JavaScript Document
var firmName="BRUTTON & CO SOLICITORS";//Name of firm
var firmAddress1 ="West End House";// address line1
var firmAddress2 ="288 West Street";//address line two

var firmTown ="Fareham";//the town firm is located  in
var firmCounty ="Hampshire";//the county firm is lacted in
var firmCountry="UK";// country firm is located in
var firmPostcode ="PO16 0AJ";//firm's postcode
var firmPhone ="01329 236171";//firm's phone number
var firmFax ="01329 289915";//firm fax number
var firmEmail ="enquiries@brutton.co.uk"//email address
var partnerName ="Derek Snatt <br> Hilary Tyler <br> Brian Gulliver <br> Andrew Robinson<br><br>ASSOCIATES<br><br>Marianne Hill<br>Anna Douglass";//insert Partner and conslutants names
var mapURL="http://www.multimap.com/map/browse.cgi?client=public&amp;db=pc&amp;addr1=&amp;client=public&amp;addr2=&amp;advanced=&amp;addr3=&amp;pc=PO160AJ&amp;quicksearch=PO160AJ"//map address of firm

function openWindow(){
window.open(mapURL, "window","menubar=yes, scrollbar=yes, height=500 width=500, locationbar=no");
}
function aaWindow(){
window.open('http://www.theaa.com/travelwatch/planner_main.jsp?toPlace=PO16 0AJ');
}
function sraWindow(){
window.open('http://www.sra.org.uk', "window","menubar=yes,  height=500 width=650, resizable=yes, location=yes, scrollbars=yes");
}
document.write('<table width="100%" border="0" align="center" cellpadding="10" cellspacing="0"><tr><td width=50% align="center"><b><a href="http://www.multimap.com/map/browse.cgi?client=public&amp;db=pc&amp;addr1=&amp;client=public&amp;addr2=&amp;advanced=&amp;addr3=&amp;pc=PO160AJ&amp;quicksearch=PO160AJ" target="_blank">Location Map</a></b></td><td width="50%" align="center"><a href ="#" onClick=aaWindow()><b>Directions</b></a></td></tr><tr><td colspan="3"><h1 class="h1Footer">');
document.write(firmName);
document.write('</h1><p class="h3Footer">Regulated by the <a href ="javascript:void(0)" onClick=sraWindow()>Solicitors Regulation Authority</a> (SRA) SRA Number 00044349</p><p class="h3Footer">');
document.write(firmAddress1);
document.write('<br>');
document.write(firmAddress2);
document.write('<br>');
document.write(firmTown);
document.write('<br>');
document.write(firmCounty);
document.write('<br>');
document.write(firmCountry);
document.write('<br>');
document.write(firmPostcode);
document.write('</p><p class="h3Footer">tel: ');
document.write(firmPhone);
document.write('<br>fax: ');
document.write(firmFax);
document.write('<br> e-mail: <a href="mailto:enquiries@brutton.co.uk"> ');
document.write(firmEmail);
document.write('</a></p>');
document.write(' <br><p class="h3Footer"><b> PARTNERS</b><br><br>');
document.write(partnerName);
document.write('</p>');
document.write('</td></tr></table>');