/*******************************************************************************************
 Purpose: 		This function will use the EnableTime variable from teh Storage frame to determine
 				if it should output a time stamp or a blank line.

 Created By: 	Steven Skarupa
 Create On:		8/2000

 History:
 Date			Modifier		Change
 ---------- 	---------------	----------------------------------------------------------------

*******************************************************************************************/
function WriteTimeText(pstrTimeStamp,pblnEnableTime,pstrMode)
{
	if(pstrMode == 'PREVIEW')
	{
		document.write('<font face=arial size=1>'+pstrTimeStamp +'</font>');
	}
	else
	{
		if (pblnEnableTime == 1)
		{
			document.write('<font face=arial size=1>'+pstrTimeStamp +'</font>');
		}
		else
		{
			document.write('&nbsp;');
		}
	}	
	
}

