//////////////




function abrirGlosario(){
	window.open ("glosario.htm","","top=150,left=200,width=780,height=370,scrollbars=no,resizable=no,menubar=no,location=no, status=no");
}



/////////una forma de abrir ficheros

function descargar( fichero )
{
	var vent = window.open( "about:blank", "", "location=0,resizable=0");
	vent.document.location.href = fichero;
}

/////////otra forma de abrir ficheros

//DOCUMENTOS (.DOC)
// usar este sistema que viene a continuacion para descargar archivos. Para tipo zip y xls, este es el unicio sistema que funciona, no el de: 
//on (press) {	getURL("../documentos/tuturnoIntegra.zip", "_blank");}
function abrir(N){
	switch (N){
	case "Sal1":
		window.open("../documentos/wbs.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "TT1":
		window.open("../documentos/modulo1_descripcion.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "TT2":
		window.open("../documentos/modulo2_diseno.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "TT3":
		window.open("../documentos/modulo3_estimaciones.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "ejeDef":
		window.open("../documentos/definicion_de_actividades.doc","","top=200,left=200,width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "ejeDur":
		window.open("../documentos/estimacion_de_actividades.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "ejeSec":
		window.open("../documentos/secuenciacion_de_actividades.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	case "ejeDes":
		window.open("../documentos/desarrollo_de_la_planificacion.doc","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
// usar este sistema para descargar archivos. Para tipo zip y xls, este es el unicio sistema que funciona, no el de: 
//on (press) {	getURL("../documentos/tuturnoIntegra.zip", "_blank");}
		
	case "zipArchi":
		window.open("../documentos/tuturnoIntegra.zip","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	
		case "xlsAmst":
		window.open("../documentos/Amsterdam.xls","","width=700,height=500,scrollbars=yes,resizable=yes,menubar=yes");
		break;
	
	}
	
}









// TUTORIAS
/*function tutoria1(){
	window.open ("../chat/tutoria1DGP20-05-05.pdf","","top=0,left=0,width=600,height=375,scrollbars=yes,resizable=yes");
}

function tutoria2(){
	window.open ("../chat/tutoria2DGP26-Mayo-05.pdf","","top=0,left=0,width=600,height=375,scrollbars=yes,resizable=yes");
}

function tutoria3(){
	window.open ("../chat/tutoria3DGP_07-07-05.pdf","","top=0,left=0,width=600,height=375,scrollbars=yes,resizable=yes");
}

function tutoria4(){
	window.open ("../chat/tutoria4DGP09-Junio-05.pdf","","top=0,left=0,width=600,height=375,scrollbars=yes,resizable=yes");
}

*/











