//document javascript

var gAutoPrint = true; 

function printSpecial(nombre) {
	if (nombre==undefined) {
		nombre = '';
	}
	if (document.getElementById != null) {
		var html = "<html>";
		html += "<head>";
		if (document.getElementsByTagName != null) {
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		html += "</head>";
		html += "<body>";
//		var printReadyElem = document.getElementById("printReady");
		var printReadyElem = document.getElementById("imprimir" + nombre);
		if (printReadyElem != null) {
			html += printReadyElem.innerHTML;
		}
		else
		{
			alert("No se encuentra el texto a imprimir en el codigo HTML");
			return;
		}
		html += "</body>";
		html += "</html>";
//alert(html);
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Lo sentimos, pero su navegador no soporta esta opción.");
	}
}