/*NOT TEST*/
function elements_class()
{
}
elements_class.prototype={
	alarm : function(id,text)
	{
		if(!document.getElementById(id)){ return false;}
//		document.getElementById(id).style.backgroundColor="#ff0185";
		document.getElementById(id).style.color="#000000";
		document.getElementById(id).style.border="1px solid #ff0185";
		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="#000000";
		document.getElementById(id).style.border="1px solid #ff0185";
	},
	remove_marker : function(id)
	{
		if(!document.getElementById(id)){return false;}
		document.getElementById(id).style.border="1px solid #666666";
		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="#ff0185";
		document.getElementById(id).style.color="#000000";		
	},
	get_value:function(id)
	{
		if(!document.getElementById(id)){ return false;}
		return document.getElementById(id).value;
	}
}

