// para el popup de noticias
function openWindow(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup.php?'+parametros,"ventana", string);
}
	
function openWindow2(ven,parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open(ven+'?'+parametros,"ventana", string);
}

// para el popup de empresa.php/informacion legal
function abrirVentana1(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup1.php?'+parametros,"ventana", string);
}

// para el popup de empresa.php/direcciones
function abrirVentana2(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup2.php?'+parametros,"ventana", string);
}

// para el popup de empresa.php/personal
function abrirVentana3(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup3.php?'+parametros,"ventana", string);
}

// para el popup de empresa.php/registros o licencias
function abrirVentana4(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup4.php?'+parametros,"ventana", string);
}

// para el popup de servicios.php/normas aplicadas
function abrirVentana5(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup5.php?'+parametros,"ventana", string);
}
	
// para el popup de obras.php/principales obras
function abrirVentana6(parametros, ancho, alto) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
			
		fin=window.open('popup6.php?'+parametros,"ventana", string);
}	
	
function dimensionar(ancho, alto, centro) {
	if(centro==true) {
		derecha=(screen.width-ancho)/2;
		arriba=(screen.height-alto)/2;
		window.moveTo(derecha,arriba);
	}
	
	window.resizeTo(ancho,alto);
}

function darFoco(id) {
	id = document.getElementById(id);
	
	if(id)  {
		id.focus();
	} else {
		self.focus();
	}
}

function doPost(frm, params) {
	var frm = document.getElementById(frm);
	if(frm) {
		frm.action = params;
		frm.submit();
	}
}