<!--
function write_line(who, date, heading, news){
        var mail, name;    
        
        if (who == "Brad") {     
                        mail = "mailto:webmaster@needleworkdesign.com";
                        name = "Webmaster";
                        }
        else if (who == "Summer") {     
                        mail = "mailto:summer@needleworkdesign.com";
                        name = "Summer Louise Truswell";
                        }
        
        document.writeln("<p class=morenews><font size=-1><b>");
        document.writeln(heading);
        document.writeln("<i> - ");
        document.writeln(date); 
        document.writeln(" - <a href=");
        document.writeln(mail);
        document.writeln(">");
        document.writeln(name);
        document.writeln("</a></i></b><br>");
        document.writeln(news);
        }

function write_welcome(){
					
					document.writeln("<table width=400><TR><TD align=left valign=top>");
					

					document.writeln("</TD></TR></table>");
}

function write_weblog(){
					
					document.writeln("<table width=400><TR><TD align=left valign=top>");
					
												
					document.writeln("</TD></TR></table>");
}
		

function write_news(){
	//***************************************************************//
	//update news here. usage = write_line(who, date, heading, news);//
	//***************************************************************//
		write_line("Summer", "09/09/05", "On Golden Shores Sampler", "A new design is now available.  All proceeds will go to Hurricane Katrina Relief.");	
	write_line("Summer", "02/09/05", "New Book!", "Summer has released a new book!  See above for details!");	
	
		
			
						
 		}
// end hiding script from old browsers -->
