function scrollBar()
{
var scrollCounter = 0;
var scrollText    = "J & J Services";
var scrollDelay   = 70;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{window.status = scrollText.substring(scrollCounter++, 
scrollText.length);
if (scrollCounter == scrollText.length) 
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);}
Scroller();
}

function emailUs()
{
var aboutWhat = location.href
if (confirm('Clicking \"OK\" will generate an e-mail to J & J Services.'))
	{
	location.href='mailto:jbuisson@louisa.net?subject='+aboutWhat
	}
}

/*
I will re-enable this function when the CGI services actually work. 

function emailUs()
{

var popup=window.open("", "popup", config='height=400,width=350,toolbar=no,location=no,directories=no,menubar=no,resizeable=yes,status=no')
popup.document.write("<html>")
popup.document.write("<title>Want to know more?</title>")
popup.document.write("<body background='http://www.jnjservices.com/images/grassside.jpg'>")
popup.document.write("<center>")
popup.document.write("<font size=3 color='black' face='georgia, tahoma, helvetica, arial'>")
popup.document.write("Want to know more about")
popup.document.write("<br>")
popup.document.write("<img src='http://www.jnjservices.com/images/jnjgrass.jpg' height=40>?<br>")
popup.document.write("</font><font size=2 color='black' face='georgia, tahoma, helvetica, arial'>")
popup.document.write("Please drop us a line...")
popup.document.write("<br>")
popup.document.write("<form method='post' action='http://www.jnjservices.com/cgi-bin/FormMail.pl'>")
popup.document.write("<input type=hidden name='recipient' value='scheinbergsa@navsea.navy.mil'>")
popup.document.write("<input type=hidden name='redirect' value='http://www.jnjservices.com/sent.html'>")
popup.document.write("Name: &nbsp;<input name='name' type='text' length='20' maxlength='30'><br>")
popup.document.write("E-mail: &nbsp;<input name='address' type='text' length='20' maxlength='30'><br>")
popup.document.write("I\'d like to know about:<br><INPUT name=subject type=radio value=Photography>")
popup.document.write("Photography<br>")
popup.document.write("<INPUT name=subject type=radio value=Landscaping>")
popup.document.write("Landscaping<br>")
popup.document.write("<INPUT name=subject type=radio value='Landscaping and Photography'>")
popup.document.write("Both<br>")
popup.document.write("Comments: &nbsp;<TEXTAREA cols=35 name=question rows=4></TEXTAREA><br>")
popup.document.write("<input type='submit' value='submit'>&nbsp;&nbsp;")
popup.document.write("<INPUT TYPE='button' onClick='self.close()' VALUE='Close Window'></FORM>")
popup.document.write("</html>")
}

*/
