
 function atras()
 {
	if (n) back();
		else history.go(-1);
 }
 
 function abreventana(url,ventana,ancho,alto)
{
	ventana = window.open(url,ventana,'width='+ancho+',height='+alto+', toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
}

function textarea(nombre,columnas,filas,wrap,estiloie,estilon,texto,html)
{
	if (ie) { document.write("<textarea name='"+ nombre +"'  cols='"+ columnas +"'          rows='"+ filas +"'           wrap='"+ wrap +"' class='"+ estiloie +"' "+ html +">"+ texto +"</textarea>"); }
	else    { document.write("<textarea name='"+ nombre +"'  cols='"+ ( columnas * 0.6 )+"' rows='"+ ( filas * 0.8 ) +"' wrap='"+ wrap +"' class='"+ estilon +"' "+ html +">"+ texto +"</textarea>"); }
}

function texto(nombre,tipo,longitud,valor,maximo,estiloie,estilon,html)
{
	if (ie) { document.write("<input name='"+ nombre +"' type='"+ tipo +"' size='"+ longitud +"' value='"+ valor +"' maxlength='"+ maximo +"' class='"+ estiloie +"' "+ html +">"); }
	else    { document.write("<input name='"+ nombre +"' type='"+ tipo +"' size='"+ ( longitud * 0.6 ) +"' value='"+ valor +"' maxlength='"+ maximo +"' class='"+ estilon +"' "+ html +">"); }
}

