function getPageCount(fFamily,fSize,fWeight,fColor,fBackground,pageName,length,fAlign) { if (!fFamily) fFamily = "sans-serif"; if (!fSize) fSize = "12px"; if (!fWeight) fWeight = "normal"; var sizeInt = parseInt(fSize); var height = sizeInt; if (length) var width = length; else var width = 3 * sizeInt; if (!fAlign) fAlign = 'left'; if (!fColor) fColor = "black"; else fColor = fColor.replace('#','%23'); if (!fBackground) fBackground = "white"; else fBackground = fBackground.replace('#','%23'); if (pageName) var thisPageURI = pageName; else var thisPageURI = escape(document.location.href); var counterServlet = "http://www.groupphotographers.com:8080/gpaos/pgcounter"; var counterParams = "?loc="+thisPageURI+"&f="+fFamily+"&s="+fSize+"&w="+fWeight+"&c="+fColor+"&b="+fBackground+"&a="+fAlign; document.writeln(''); }