
function addValidationSticker() {
	
	//create table
	var valid = document.getElementById( "valid" );
	var table = document.createElement( "table" );
	var tr = document.createElement( "tr" );
	table.appendChild( tr );
	valid.appendChild( table );
	
	//add link to the w3 page
	var td1 = document.createElement( "td" );
	td1.setAttribute( "width", "100" );
	var w3link = document.createElement( "a" );
	w3link.setAttribute( "href", "http://validator.w3.org/check?uri=referer" );
	w3link.style.color = "#8888FF";
	var w3img = document.createElement( "img" );
	w3img.setAttribute( "src", "http://www.w3.org/Icons/valid-html401-blue" );
	w3img.setAttribute( "alt", "Valid HTML 4.01 Transitional" );
	w3img.setAttribute( "height", "31" );
	w3img.setAttribute( "width", "80" );
	w3link.appendChild( w3img );
	td1.appendChild( w3link );
	tr.appendChild( td1 );
	
	//add supported browsers
	var td2 = document.createElement( "td" );
	var browsers = document.createElement( "p" );
	browsers.appendChild( document.createTextNode( "Verified for Firefox 2.0, Firefox 3.0, and Safari 3.0" ) );
	td2.appendChild( browsers );
	tr.appendChild( td2 );
	
	//add copyright
	var copyright = document.createElement( "p" );
	copyright.appendChild( document.createTextNode( "\u00A9 Andrew Knight, 2009.  All rights reserved. " ) );
	valid.appendChild( copyright );
}