// desactiva botón derecho en las imágenes
io = 0;
function bot_der() {
	if(!io) return true;
	else return false;
}

// abre nuevas ventanas
nw = 0;
function abrir() {
	nw ++;
	if(arguments.length == 1) open(arguments[0],'nueva'+nw,'width=500,height=300,scrollbars=yes');
	else {
		if(arguments.length == 2) open(arguments[0],'nueva'+nw,arguments[1]);
		else open(arguments[0],arguments[1],arguments[2]);
	}
}

// abre ventanas de mensajería
function mg(id) {
	abrir('mensajes_escribir.php?id='+id,'width=420,height=255');
}

// usuarios no registrados
function reg() {
	location.href = 'registro_invitacion.php';
	//if(confirm("Para buscar o ver los perfiles de los usuarios\nhas de registrarte en Contactalia.com\n\n¿Quieres registrarte ahora?")) location.href = 'registro_completo.php';
}

// usuarios registrados no aprobados
function apr() {
	if(confirm("Tu registro no está completo.\n\nPulsa ''Aceptar'' para proceder a finalizarlo.")) location.href = 'registro_incompleto.php';
}
