function imprimirCapa(a,t)
{
	var b=document.getElementById(a).innerHTML;
	var c=window.open("about:blank","c");
	c.document.write("<html>\n<head>\n\t<title>" + t +"<\/title>");
	c.document.write("\n\t<link href=\"../inc_estilo_global.css\"  rel=\"stylesheet\" type=\"text/css\">");
	c.document.write("\n\t<link href=\"../inc_estilo_pub.css\"  rel=\"stylesheet\" type=\"text/css\">");	
	c.document.write("\n<\/head>\n<body>");
	c.document.write("\n\t" + b);
	c.document.write("\n<\/body>\n<\/html>");
	c.document.close();
	c.window.print();
}

function abrirSpot() {
	posX = (screen.height-338)/2;
	posY = (screen.width-400)/2;
	opciones = "toolbar=no,location=no,directories=no,status=no,menubar=no,crollbars=no,resizable=no,width=400,height=338,top="+posX+",left="+posY;
	window.open("spot.htm","SPOT",opciones);
}