/*NOT TEST*/
function elements_class()
{
}
elements_class.prototype={
	alarm : function(id,text)
	{
		if(!document.getElementById(id)){ return false;}
//		document.getElementById(id).style.backgroundImage="url('"+HTML_OBJ.URL+"design/input_feedback_bg.gif')";
		document.getElementById(id).style.backgroundColor="#751134";
		document.getElementById(id).style.color="#ffffff";
//		document.getElementById(id).style.backgroundRepeat="repeat-x";
		alert(text);
	},
	alarm_marker : function(id,text){this.marker(id);alert(text);},	
	marker : function(id)
	{
		if(!document.getElementById(id)){ return false;}
		document.getElementById(id).style.color="#751134";
		document.getElementById(id).style.border="1px solid #751134";
	},
	remove_marker : function(id)
	{
		if(!document.getElementById(id)){return false;}
		document.getElementById(id).style.border="1px solid #ddd0d0";
		document.getElementById(id).style.color="#000000";		
	},
	normal : function(id)
	{
		if(!document.getElementById(id)){return false;}
//		document.getElementById(id).style.backgroundImage="none";
		document.getElementById(id).style.backgroundColor="#ffffff";
		document.getElementById(id).style.color="#000000";		
	},
	get_value:function(id)
	{
		if(!document.getElementById(id)){ return false;}
		return document.getElementById(id).value;
	}
}

