function create_time()
{
	Temp_Date=new Date()
	
	crm_locale_converted_Date=Temp_Date.getFullYear();
	crm_locale_converted_Date=crm_locale_converted_Date + '-' + eval(Temp_Date.getMonth()+1);
	crm_locale_converted_Date=crm_locale_converted_Date + '-' +  Temp_Date.getDate();
	crm_locale_converted_Date=crm_locale_converted_Date + ' ' +  Temp_Date.getHours();
	crm_locale_converted_Date=crm_locale_converted_Date + ':' +  Temp_Date.getMinutes();
	crm_locale_converted_Date=crm_locale_converted_Date + ':' +  Temp_Date.getSeconds();
	return crm_locale_converted_Date;
}

function create_date()
{
	Temp_Date=new Date()
	
	crm_locale_converted_Date=eval(Temp_Date.getMonth()+1);
	crm_locale_converted_Date=crm_locale_converted_Date + '/' +  Temp_Date.getDate();
	crm_locale_converted_Date=crm_locale_converted_Date + '/' + Temp_Date.getYear();
	return crm_locale_converted_Date;
}
