<!--

function AbreArticulo(numArticulo) {
	switch (numArticulo) {
		
		case "01": {
			if (screen.width == 1024)
				ventana = window.open('articulo_01.html','','scrollbars, height=540, width=790, left=105, top=96');
			else
				ventana = window.open('articulo_01.html','','scrollbars, height=445, width=790, left=0, top=76');
			break;
		}
		
		case "02": {
			if (screen.width == 1024)
				ventana = window.open('articulo_02.html','','scrollbars, height=540, width=790, left=105, top=96');
			else
				ventana = window.open('articulo_02.html','','scrollbars, height=445, width=790, left=0, top=76');
			break;
		}
		
		case "03": {
			if (screen.width == 1024)
				ventana = window.open('articulo_03.html','','scrollbars, height=540, width=790, left=105, top=96');
			else
				ventana = window.open('articulo_03.html','','scrollbars, height=445, width=790, left=0, top=76');
				break;
		}
	}
}

//-->
