03/08/2001
By Tim Wyatt / The Dallas Morning News
A colleague too busy to spend hours thumbing through hair salon magazines gave us the inspiration to scare up some online salon styles. This quest, conducted by a man who can cut his hair with a battery-powered beard trimmer in less than a minute, brought out the frustration that you thickly tressed souls must experience.
This site boldly claims to have the world's largest photographic directory of hairstyles, though we found it to be a cleverly designed directory of professionals who specialize in African-American hairstyles. Click Find It on the cover page to go to categories such as braids, "Up Dos" and twists, with extras thrown in for holiday and prom hairdos. Then click the desired category and your ethnicity, gender and state to see the hairdos and stylists who specialize in what you seek.
Scroll far down to Hairstyles for nine categories of what appears to be a showcase of Hollywood stylist George Carroll's work, plus a general collection of basic styles and descriptions the elevated bob, the A-line bob, bias cuts. The site also posts movie star hairstyles for men and women so visitors can learn how to get that James Dean, Ricky Martin or Bob Hope look. That's right, the Bob Hope look.
The style gallery here offered links to more than a dozen stylists' galleries and their specialties, including ultra long hair, men's cuts and celebrity styles. It is one of the few sites that actually delivers children's styles, although the cuts were exclusively for girls. The interactive style selector lets viewers get a little more picky about what they're looking for and, unlike other similar tools, seemed to always bring back something to view regardless of how silly or specific our request was. Just one question: Is it just us or should everyone be alarmed when a model puts a floppy hat on her new hairdo?
We went into the Sue-lect Style Selector to see if these folks posted a good variety of styles. It was nice to see that they included photos of everyday men and women. And each style was labeled by color, length and texture. Models' ages were even included, and should you find a style to take to the corner cosmetician, the page will blow up a photo to print. Still, the selection was lacking in a lot of areas we found no children's styles after five or six tries.
Beauty Shop Archives
www.net-link.net/~mwarner/BSA.html
We simply had to include this site based solely on its mission to chronicle hairdos of bygone days, such as the Unisex look of the 1970s that single-handedly lowered America's aggregate testosterone level by 25 percent for a decade. Head into The Archives for styling directions for bobs, pixies and waves, including two styles that still live on in certain roadside diners of Texas: the bouffant and the beehive. Navigating here can be rough, though, as photo links appear to bounce through a century of good and bad hair in confused fashion.
Tim Wyatt is a Dallas Morning News staff writer.
<%@ page session=false %>
<%@ page import = "java.util.*" %>
<%@ page import = "java.net.*" %>
<%-- This is Java stuff to create a lookup table. As we test/develop with other sites, we add coding for them --%>
<%
Hashtable topsiteID = new Hashtable(); // build hashtable
topsiteID.put("txcn_gold", "txcntechgoldstory_bot.jsp");
topsiteID.put("nwcn", "nwcntechgoldstory_bot.jsp");
topsiteID.put("nwcn_gold", "nwcntechgoldstory_bot.jsp");
topsiteID.put("dallasnews","dallasnewstech_bot.jsp");
topsiteID.put("kmov","kmovtech_bot.jsp");
topsiteID.put("kmov_gold","kmovtechgoldstory_bot.jsp");
topsiteID.put("krem","kremtechgoldstory_bot.jsp");
topsiteID.put("krem_gold","kremtechgoldstory_bot.jsp");
topsiteID.put("kingtest","kingtechteststory_bot.jsp");
topsiteID.put("king5","kingtechgoldstory_bot.jsp");
topsiteID.put("test","test_bot.jsp");
topsiteID.put("pe_gold","petechgoldstory_bot.jsp");
topsiteID.put("kgw","kgwtech_bot.jsp");
topsiteID.put("inland","inlandtech_bot.jsp");
topsiteID.put("kmsb","kmsbtech_bot.jsp");
topsiteID.put("azfamily","azfamilytech_bot.jsp");
topsiteID.put("azfamily_gold","azfamilytechgoldstory_bot.jsp");
topsiteID.put("ktvb","ktvbtech_bot.jsp");
topsiteID.put("ktvb_gold","ktvbtechgoldstory_bot.jsp");
topsiteID.put("kskn","kskntech_bot.jsp");
topsiteID.put("whas","whastechgoldstory_bot.jsp");
topsiteID.put("whas11","whastechgoldstory_bot.jsp");
topsiteID.put("whas_gold","whastechgoldstory_bot.jsp");
topsiteID.put("wwl","wwltechgoldstory_bot.jsp");
topsiteID.put("wwl_gold","wwltechgoldstory_bot.jsp");
topsiteID.put("khou_gold","khoutechgoldstory_bot.jsp");
topsiteID.put("kvue","kvuetechgoldstory_bot.jsp");
topsiteID.put("kvue_gold","kvuetechgoldstory_bot.jsp");
topsiteID.put("mysanantonio","mysanantoniotech_bot.jsp");
topsiteID.put("dentonrc_gold","dentonrctechgoldstory_bot.jsp");
topsiteID.put("wvec","wvectechgoldstory_bot.jsp");
topsiteID.put("wvec_gold","wvectechgoldstory_bot.jsp");
topsiteID.put("nbc6","nbc6techgoldstory_bot.jsp");
topsiteID.put("nbc6_gold","nbc6techgoldstory_bot.jsp");
topsiteID.put("projo","projotech_bot.jsp");
topsiteID.put("wfaa","wfaatech_bot.jsp");
topsiteID.put("arlington","arlingtontech_bot.jsp");
String rsiteid="";
if (request.getHeader("Referer") != null) {
String referer = request.getHeader("Referer");
int startAt = 0;
if (referer.indexOf("http://www.") != -1) {
startAt = 11; //index of 1st char after 'http://www.' in url
} else {
if (referer.indexOf(".") != -1) {
startAt = referer.indexOf("."); //index of 1st char
startAt = startAt + 1;
}
}
rsiteid = referer.substring(startAt, referer.indexOf(".com"));
}
if((String)topsiteID.get(rsiteid) == null) rsiteid = "";
if (rsiteid == "") {
Cookie cookies[] = request.getCookies();
Cookie cookie = null;
if (cookies != null) {
for (int i=0; i < cookies.length; ++i) {
if (cookies[i].getName().equals("Siteid")) {
cookie = cookies[i];
rsiteid = URLDecoder.decode(cookie.getValue());
break;
} else {}
}
}
}
if (rsiteid == "") rsiteid = "dallasnews";
String Thisisthetoptemplateid = (String)topsiteID.get(rsiteid);
%>
<%-- This JSP coding does a server-side include of the HTML which represents the top template --%>