//*****************************************************************************
//Pasa codigo por innerhtml para envio de ofertas
//*****************************************************************************/



var cont;
cont = document.getElementById('info').innerHTML;	
var pintafechas;
pintafechas = document.getElementById('printdate').innerHTML;			

	  

function replace(string,text,by) 
{
	var strLength = string.length, txtLength = text.length;
	if ((strLength == 0) || (txtLength == 0)) return string;
	var i = string.indexOf(text);	
	if ((!i) && (text != string.substring(0,txtLength))) return string;
	if (i == -1) return string;
	var newstr = string.substring(0,i) + by;
	if (i+txtLength < strLength)
    newstr += replace(string.substring(i+txtLength,strLength),text,by);
    return newstr; 
}

var cont2;
cont2= replace(cont,"\r",""); 
cont2= replace(cont2,"\n","");
document.getElementById('oferta').value = cont2;
document.getElementById('oferta').style.visibility = 'hidden';

var pintafechas2;
pintafechas2= replace(pintafechas,"\r",""); 
pintafechas2= replace(pintafechas2,"\n","");
document.getElementById('fechaspintadas').value = pintafechas2;
document.getElementById('fechaspintadas').style.visibility = 'hidden';

