function mostrarwindow(cod_contenido,ancho_ventana,alto_ventana)
{
	ancho=600;
	alto=390;
	//properties="scroollbars=yes,resizable=yes,top=100,left=100";
	if (cod_contenido != null )
	{
	php = "/vistaprevia.php?cod_contenido="+cod_contenido;
	if (ancho_ventana != null)
		ancho = ancho_ventana;
	if (alto_ventana != null)
		alto = alto_ventana;

	//properties = properties + ",width="+ ancho +",height="+alto;
	properties ='width='+ ancho +',height='+alto+',scrollbars=yes,resizable=yes,top=100,left=100';
	window.open(php,null,properties);
	}
}

function imprimir()
{
	if (window.print)
  	{
  		parent.frames[0].focus();
		parent.frames[0].print();

  	}
  	else
  		alert("No se puede imprimir desde su navegador");
}