/**************************************************
'	File name			ColorPicker.js
'	Description			This is used to display the
'						color picker 
'
'   Modification Log
'   Date				Author			    Remarks     
' 	28-Nov-2006		  Jacob Eapen		Initial version
**************************************************/

/*******************************************************************************
'	Function Name		fnColor				
'
'	Description			This function displays the colorpicker on the screen 
'						and fills the text field with the selected color.
'
'	Modification Log
'   Date                Author          Modification 
' 	28-Nov-2006		  Jacob Eapen		Initial version
'*******************************************************************************/
function fnColor(sTxtBoxId)
{
	var oldcolor = document.getElementById(sTxtBoxId).value;
	var newcolor = showModalDialog("/EastmanRecreation/ColorPickerHtm.htm", oldcolor, "resizable: no; help: no; status: no; scroll: no;");
	
	if ((newcolor == null) || (newcolor == ''))
	{
		newcolor = oldcolor;
	}
	else
	{
		newcolor = "#"+newcolor;
	}

	document.getElementById(sTxtBoxId).value = newcolor.toUpperCase();
}