window.onload = function()
{
	var input = document.getElementsByTagName("input");
	for (i = 0; i <= input.length -1; i++)
	{
		if(input[i].type == 'text' || input[i].type == 'password')
		{
			changeAttributes(input[i]);
		}
	}
	
	var txtArea = document.getElementsByTagName("textarea");
	for (i = 0; i <= txtArea.length -1; i++)
	{
		changeAttributes(txtArea[i]);
	}	
	
	
	var selectArea = document.getElementsByTagName("select");
	for (i = 0; i <= selectArea.length -1; i++)
	{
		changeAttributes(selectArea[i]);
	}	
}

function changeAttributes(obj)
{
	obj.onfocus = function()
		{
			this.style.border = '1px solid #FF0000';
		}		
	obj.onblur = function()
		{
			this.style.border = '1px solid #CCCCCC';
		}
	obj.onclick = function()
		{
			this.style.border = '1px solid #FF0000';
		}	
}


