// JavaScript Document<!--
function mynice_error(mytextbox)
{
	    mytextbox.style.backgroundColor = '#CCCCCC'; 
		mytextbox.style.backgroundAttachment= 'fixed';
		mytextbox.style.backgroundImage='url(/_img/required.gif)';
		mytextbox.style.backgroundRepeat= 'no-repeat';
		mytextbox.style.backgroundPosition= 'right top';
}
function goto_error(mytextbox)
{
		mytextbox.focus();
		mytextbox.select();		
}
//-->