function prepareCustom()
{
	var className = 'external';
	var as = document.getElementsByTagName('a');
	for(i=0;i<as.length;i++)
	{
		var a = as[i];
		r=new RegExp("(^| )"+className+"($| )");
		if(r.test(a.className))
		{
			a.onclick = function(){window.open(this.href);return false;}
		}
	}

	var as = document.getElementsByTagName('input');
	for(i=0;i<as.length;i++)
	{
		var a = as[i];
		a.onfocus = function(){this.style.backgroundColor="#ffffd7"}
		a.onblur = function(){this.style.backgroundColor="#ffffff"}
		if(a.type != "button" && a.type != "submit" && a.type != "hidden" && a.type != "radio" && a.type != "check")
		{
			a.style.border = "1px solid #7f9db9";
		}
	}
}

prepareCustom();
