// Java Script for Top Links // Last update Sat, 23 Jun 2007 09:18:05 PST // copyright protected, Designing Online, Inc. - all rights reserved. function show_top_links(layout,twidth){ // layout is vert or horz, and twidth is max table width var link_spot=1; if(layout == "horz"){ var colwidth=(twidth/2)-10; } else{ var colwidth=twidth; } document.write(''); document.write(''); document.write(''); document.write(''); } if(layout == "vert"){ if(link_spot == 2){ document.write(''); } } link_spot++; } // End While document.write('
'); while(link_spot<=2){ if (link_spot == 1){ var jurl="http://www.guide4home.com"; var jtitle="Guide4Home - Home and Garden"; var jdesc="A site covering many articles on popular topics useful for the home and garden like interior decorating, outdoor furniture and fountains."; } if (link_spot == 2){ var jurl="http://www.chef-rangecookers.com"; var jtitle="Kitchen Ranges from UK."; var jdesc="To choose from a gas range or an electric one from a 36 gas range to a 48inch electric kitchen range. Our most popular is the slide in-range (gas rang..."; } if((link_spot == 2) && (layout == "horz")){ document.write(' \;'); } document.write('

'+jtitle+'
'); document.write(''+jdesc+'

'); if(layout == "horz"){ document.write('
'); } // End function Show Top Links