function popup(tipo){
	switch(tipo){
		case "nutricional":
			width = 548;
			height = 902;
			page = "/consulta/index.php"; 
			break;
	}
	wh = window.open(page,"","width="+width+",height="+height+",fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}

function generic_popup(url,target){
	width = 540;
	height = 497;
	wh = window.open(url,target,"width="+width+",height="+height+",fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}

function generic_sized_popup(url,target,width,height){
	wh = window.open(url, target, 'width='+width+', height='+height+', resizable=no, scrollbars=yes, location=no, directories=no, status=no, menubar=no, copyhistory=no');
}

function abrir_bases_legales(){
	window.open('/bases_legales_promocion.html', 'popup', 'width=540, height=497, resizable=no, scrollbars=yes, location=no, directories=no, status=no, menubar=no, copyhistory=no');
}

function abrir_bases(qual){
	window.open(qual, 'popup', 'width=600, height=497, resizable=no, scrollbars=yes, location=no, directories=no, status=no, menubar=no, copyhistory=no');
}

function mensaje_java(texto_mensaje){
	alerta(texto_mensaje);
}

function alerta(texto_mensaje){
	flash_modal("/comun/swf/alert.swf","texto="+texto_mensaje);
}