//
// footer.js
// script used to include navigation bar in Pulver pages
//

//
// Remember that you can't have newlines in your variables
// text must be surrounded by apostrophes (')
// if you have an apostrophe in your variable, 
//  escape it by putting a backslash in front of it
//  like the below example...
//   var example = 'Patti\'s hair is so fun!';
//


///////////////////////////////////////////

var footer =
'<font face="tahoma" size="1"><B>Located at: </B>9221 Rumsey Road, Suite S-6, Columbia, Maryland 21045  <font face="arial" size="1">|</font>   <B>Phone</B> 410.715.9071  <font face="arial" size="1">|</font>  <A HREF="http://www.digitalprintingmaryland.com"><B>Digital Printing in Maryland</B></A></font>';

// Use this command if using the big block of text
document.write(footer);


////////////////////////////////////////////

