// JavaScript Document
	function convertirFecha(f) {
	var fecha= new Date(f);
	var strFecha=""
	strFecha=fecha.getDate().toString() +"/";
	strFecha+=(fecha.getMonth() +1 ).toString() +"/"
	strFecha+=fecha.getFullYear().toString() 
	return ("&nbsp;" + strFecha +"&nbsp;")
	}