 
	function setNodeFontSize( node, size )	{
		if( node.nodeType == 3 )	{
			if( node.parentNode.style )
				node.parentNode.style.fontSize = size;
			return;
		}

		var childNodesInt = node.childNodes;
		if( childNodesInt )	{
			for( var c = 0; c < childNodesInt.length; c ++ )	{
				setNodeFontSize( childNodesInt.item( c ), size )
			}
		}	
	}
	
	function setFontSize( size )	{
	
	var childNodes = document.getElementsByTagName('div');
		//var childNodes = document.body.childNodes;
		for( var c = 0; c < childNodes.length; c ++ )	{
			setNodeFontSize( childNodes.item( c ), size );
		}
		
		if( window.frame_content ){
			window.frame_content.setFontSize( size );
		}
	}
	
	function imprimir(){
		window.open("print.html", "", "width=563, height=500, resizable=false, scrollbars=yes");
	}
	
	
	function enviar(){
		window.open("225,6613.php");
	}
 
