// JavaScript Document

function notChangeText(id,lngText,fieldValue)
{
	if(fieldValue == lngText)
		document.getElementById(id).value = '';
		
}
function _blur(id,lngText,fieldValue){

	if(!fieldValue){
		document.getElementById(id).value = lngText;
		document.getElementById(id).style.color = "#838383";
	}
}

function changeColor(id){ 
	document.getElementById(id).style.color = "#000"; 
}

function setFieldColor(id,lngText,fieldValue)
{
	if(fieldValue != lngText )
		document.getElementById(id).style.color = "#000";
}


