function Artist(name,bio,sample) {
	this.name=name;
	this.bio=bio;
	this.sample=sample;
	}

Artist.prototype.xhtml = function() {
	xhtml="";
	xhtml+="<div class=thumbnail>"
	if(this.sample) xhtml+="<img src=images/"+this.sample+" alt=\""+this.name+"\" width=110 border=0 />"
	xhtml+="</div>\n"
	xhtml+="<div class=artistname><a href=\"artists.php?aname="+this.name+"\">"+this.name+"</a></div>\n";
	xhtml+="<div class=artistbio>"+this.bio+"</div>\n";
	return xhtml;
	}

Artist.prototype.namelink = function() {
	return "<div class=artistname><a href=\"artists.php?aname="+this.name+"\">"+this.name+"</a></div>\n";
	}
Artist.prototype.thumblink = function() {
	args=Artist.prototype.thumblink.arguments;
	return ((this.sample)?"<div class=thumb><a href=\"artists.php?aname="+this.name+"\"><img src=\"images/"+this.sample+"\" width="+((args[0])?args[0]:"70")+" /></a></div>\n" : "");
	}

Artist.prototype.fullxhtml = function() {
	args=Artist.prototype.fullxhtml.arguments;
	xhtml="";
	xhtml+="<div class=thumbnail>"
	if(this.sample && !args[0]) xhtml+="<img src=images/"+this.sample+" alt=\""+this.name+"\" border=0 />"
	xhtml+="</div>\n"
	xhtml+="<div class=artistname>"+this.name+"</div>\n";
	xhtml+="<div class=artistbio>"+this.bio+"</div>\n";
	return xhtml;
	}


artists=new Array();
artists[1]=new Artist("Judith Bourzutschy","A mother, scientist, musician, reader, deep thinker and artist, Judith manipulates the symbols of her life onto canvas.","Copy_of_jbMexArch-100x116.jpg");
artists[2]=new Artist("Colette Calilhanna","Colette has lately returned to painting after a long absence. Her method of painting, simple and bold, combines a traditional style with an innovative eye. 'The art of it is to enjoy ...'","Paint_Images_014-133x95.jpg");
artists[3]=new Artist("Karin Colton","Karin  works mostly in oils.  Her style includes impressionistic,   expressionistic and abstract art, representing figures, still lifes and landscapes. She has studied at Universities and Studio","karin3-98x119.jpg");
artists[4]=new Artist("Terri Cunningham","Terri is a Plein-air artist who specializes in Landscape and Still Life Paintings. She is very excited about painting nature in its undisturbed state.","Terri_3-141x94.jpg");
artists[5]=new Artist("Cherry Dearie","Cherry was born in Edinburgh, Scotland and raised in the Washington, DC area. She works mainly in watercolor doing portraits of children, local and beach scenes. She also belongs to local Art Leagues of Strathmore and Rehoboth","cherry_4-158x97.jpg");
artists[6]=new Artist("Felisa Federman","Graduated from painting and fiber art in Argentina. She creates a diffuse atmospheric mixed media space, depicting conceptual and symbolic images.  ","Earth-143x102.jpg");
artists[7]=new Artist("Claire Howard","Claire offers her Interior Design clients custom murals and paintings in creating inviting and personalized homes. She is inspired by her gardens and farm  in Poolesville where she lives with her wonderful husband, children and animals.","claire-154x107.jpg");
artists[8]=new Artist("Anne Martinez","Anne is a retired teacher who works in pastels, oil and acrylics. A graduate of the Trinity College, she has taught, painted and lived in Potomac for the past forty years on a working farm with her husband, Ramon. Anne specializes in painting animals and portraits, and frequently combines these two interests to produce keepsake pet portaits.","anne_rooster-96x154.jpg");
artists[11]=new Artist("Yolanda Prinsloo","Yolanda is a South African artist and art teacher. She works at capturing cultural and traditional icons in her paintings.","Eastern_Connection.jpg");
artists[12]=new Artist("Beth Rodiquez","Richard Bess is addicted to painting, she has other passions too; family, travel and drama. She has a MA in Art History. Her colorful paintings have stories to tell, she now focuses on plein-air paintings.</div>","Bess3-143x103.jpg");
artists[13]=new Artist("Martha Lechner Spak","Martha creates work in oil that evoke a thoughtful pause. Her goal is to create a sense of light and warmth in any setting -- Still Life, Landscape and Portraiture","Martha_Lechner_Spak-97x135.jpg");