window.defaultStatus = "John D. Stephens, Inc.";

function ButtonHighlight(ButtonName)
         {document[ButtonName].src="images/button-"+ButtonName+"-over.jpg"}

function ButtonNormal(ButtonName)
         {document[ButtonName].src="images/button-"+ButtonName+".jpg"}

function ShowLargePic(picturefile) { var wtop  = 50;
                                    var wleft = (screen.width - 680) / 2;
                              	    var wprops = winprops = 'top='+wtop+',left='+wleft+',resizable'
 				        newwin = window.open('','','width=600,height=580,'+wprops);

                                          if (!newwin.opener) newwin.opener = self;
                                   		with (newwin.document) { open();
                                                                   write('<html><title>John D. Stephens</title><body onLoad="setTimeout(window.close, 600000)" bgcolor="#FFFFFF"><table align="center" height=100% width=100% border=0><tr><td align="center"><font face="Times New Roman,Arial">');
                                                                   write('<IMG SRC="images/logo-popup.gif"><BR>');
                                                                   write('<IMG SRC="images/' + picturefile + '_large.jpg"><table><tr>');

                                                                   write('<td><form action="" method="post"><input type="image" src="images/button-close.gif" border="0" onclick=window.close()></form>');

                                                                   write('</tr></table></td></tr></table></body></html>');
                                                                   close();
                                                                  }
                                         }


