// JavaScript Document
	
function externalLinks() 
	{
		if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
		
		for (var i=0; i<anchors.length; i++) 
			{
				var anchor = anchors[i];
				if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
				anchor.target = "_blank";
			}
	}
	
function reloadForm()
	{
		document.getElementById('thought').innerHTML = "<ul id=\"thoughtform\"><li><label for=\"thought_name\">Your name</label><input type=\"text\" class=\"text\" id=\"thought_name\" name=\"thought_name\" /></li><li><label for=\"thought_town\">Your town</label><input type=\"text\" class=\"text\" id=\"thought_town\" name=\"thought_town\" /></li><li><label for=\"thought_for\">Who is this for</label><input type=\"text\" class=\"text\" id=\"thought_for\" name=\"thought_for\" /></li><li><label for=\"thought_message\">Your message</label><textarea id=\"thought_message\" name=\"thought_message\" cols=\"18\" rows=\"5\"></textarea><div class=\"clearboth\"></div></li><li><div id=\"thoughtresult\"></div><input type=\"hidden\" id=\"required\" value=\"thought_name,thought_town,thought_for,thought_message\" /><input type=\"button\" id=\"thought_submit\" onclick=\"return checkform(this.parentNode.parentNode, 'thoughtresult', 'sendThought');\" /></li></ul>";
	}
	
window.onload = externalLinks;